UNPKG

gu-plugin-formula

Version:
12 lines (11 loc) 294 B
/** * @description elem to html * @author wangfupeng */ import { SlateElement } from '@wangeditor/editor'; declare function formulaToHtml(elem: SlateElement, childrenHtml: string): string; declare const conf: { type: string; elemToHtml: typeof formulaToHtml; }; export default conf;