UNPKG

@wangeditor-next/yjs-for-react

Version:

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

17 lines (16 loc) 418 B
/** * @description to html * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import { Element } from 'slate'; declare function elemToHtml(elem: Element, childrenHtml: string, editor?: IDomEditor): { html: string; prefix?: string; suffix?: string; }; declare const listItemToHtmlConf: { type: string; elemToHtml: typeof elemToHtml; }; export default listItemToHtmlConf;