UNPKG

lexical-vue

Version:

An extensible Vue 3 web text-editor based on Lexical.

5 lines (4 loc) 411 B
import type { LexicalEditor, LexicalNode } from 'lexical'; import type { LexicalCommandLog } from './useLexicalCommandsLog'; export type CustomPrintNodeFn = (node: LexicalNode, obfuscateText?: boolean) => string | undefined; export declare function generateContent(editor: LexicalEditor, commandsLog: LexicalCommandLog, exportDOM: boolean, customPrintNode?: CustomPrintNodeFn, obfuscateText?: boolean): string;