UNPKG

plugin-audio

Version:
12 lines (11 loc) 396 B
/** * @description parse html * @author wulijie */ import { IDomEditor, SlateDescendant, SlateElement } from "@wangeditor/editor"; declare function parseAudioElementHtml(domElem: Element, children: SlateDescendant[], editor: IDomEditor): SlateElement; declare const parseAudioHtmlConf: { selector: string; parseElemHtml: typeof parseAudioElementHtml; }; export { parseAudioHtmlConf };