UNPKG

wangeditor

Version:

wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费

9 lines (8 loc) 316 B
/** * @description 从nodeList json格式中遍历生成dom元素 * @author zhengwenjian */ import { DomElement } from './../utils/dom-core'; import { NodeListType } from './getChildrenJSON'; declare function getHtmlByNodeList(nodeList: NodeListType, parent?: Node): DomElement; export default getHtmlByNodeList;