UNPKG

@wangeditor-next/yjs-for-react

Version:

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

10 lines (9 loc) 330 B
/** * @description elem -> html * @author wangfupeng */ import { Element } from 'slate'; import { IDomEditor } from '../editor/interface'; import type { INodeToHtmlOptions } from './node2html'; declare function elemToHtml(elemNode: Element, editor: IDomEditor, options?: INodeToHtmlOptions): string; export default elemToHtml;