@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
13 lines (12 loc) • 392 B
TypeScript
import { LexicalEditor } from 'lexical';
import { type FC } from 'react';
import { LinkNode } from '../../node/LinkNode';
export declare const EDIT_LINK_COMMAND: import("lexical").LexicalCommand<{
linkNode: LinkNode | null;
linkNodeDOM: HTMLElement | null;
}>;
interface LinkEditProps {
editor: LexicalEditor;
}
declare const LinkEdit: FC<LinkEditProps>;
export default LinkEdit;