UNPKG

vue-admin-core

Version:
13 lines (12 loc) 377 B
/** * @description parse elem html * @author wangfupeng */ import type { SlateElement } from "@wangeditor/editor"; import type { DOMElement } from "@wangeditor/core/dist/core/src/utils/dom"; declare function parseHtml(elem: DOMElement): SlateElement; declare const parseHtmlConf: { selector: string; parseElemHtml: typeof parseHtml; }; export default parseHtmlConf;