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.

17 lines (16 loc) 508 B
import type { IEditorPluginConstructor } from "../../../types"; /** * NodePluginOptions - Configuration options for the Node plugin */ export interface INodePluginOptions { /** * Enable or disable the node data source * @default true */ enabled?: boolean; } /** * LitexmlPlugin - A plugin that provides XML-based data source support * Allows converting between Lexical editor state and XML format */ export declare const INodePlugin: IEditorPluginConstructor<INodePluginOptions>;