plugin-audio
Version:
wangEditor 上传音频
12 lines (11 loc) • 396 B
TypeScript
/**
* @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 };