mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import React from "react";
|
|
export interface NodeViewContentProps {
|
|
[key: string]: any;
|
|
as?: React.ElementType;
|
|
}
|
|
export declare const NodeViewContent: React.FC<NodeViewContentProps>;
|