UNPKG

@wangeditor-next/yjs-for-react

Version:

React specific components/utils for wangeditor-next-yjs.

13 lines (12 loc) 365 B
/** * @description node -> html * @author wangfupeng */ import { Descendant } from 'slate'; import type { IDomEditor } from '../editor/interface'; export interface INodeToHtmlOptions { includeId?: boolean; idKey?: string; } declare function node2html(node: Descendant, editor: IDomEditor, options?: INodeToHtmlOptions): string; export default node2html;