UNPKG

@wangeditor-next/yjs-for-react

Version:

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

14 lines (13 loc) 366 B
/** * @description text to html * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import { Descendant } from 'slate'; /** * style to html * @param textNode slate text node * @param textHtml text html * @returns styled html */ export declare function styleToHtml(textNode: Descendant, textHtml: string, editor?: IDomEditor): string;