UNPKG

@wangeditor/basic-modules

Version:
17 lines (16 loc) 449 B
/** * @description to html * @author wangfupeng */ import { Element } from 'slate'; declare function codeToHtml(elem: Element, childrenHtml: string): string; export declare const codeToHtmlConf: { type: string; elemToHtml: typeof codeToHtml; }; declare function preToHtml(elem: Element, childrenHtml: string): string; export declare const preToHtmlConf: { type: string; elemToHtml: typeof preToHtml; }; export {};