@wangeditor/basic-modules
Version:
wangEditor basic modules
16 lines (15 loc) • 362 B
TypeScript
/**
* @description pre-parse html
* @author wangfupeng
*/
import { DOMElement } from '../../utils/dom';
/**
* pre-prase font ,兼容 V4
* @param fontElem fontElem
*/
declare function preParse(fontElem: DOMElement): DOMElement;
export declare const preParseHtmlConf: {
selector: string;
preParseHtml: typeof preParse;
};
export {};