@wangeditor-kai/yjs-for-react
Version:
React specific components/utils for wangeditor-next-yjs.
16 lines (15 loc) • 347 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 {};