UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

11 lines (10 loc) 293 B
import { LexicalEditor } from 'lexical'; import { type FC } from 'react'; import { FileNode } from '../../node/FileNode'; interface ReactFileProps { className?: string; editor: LexicalEditor; node: FileNode; } declare const ReactFile: FC<ReactFileProps>; export default ReactFile;