UNPKG

@wangeditor-next/editor

Version:
15 lines (14 loc) 404 B
/** * @description textStyle 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 * @param editor editor instance * @returns styled html */ export declare function styleToHtml(textNode: Descendant, textHtml: string, editor?: IDomEditor): string;