UNPKG

316 BTypeScriptView Raw
1/**
2 * @description 从nodeList json格式中遍历生成dom元素
3 * @author zhengwenjian
4 */
5import { DomElement } from './../utils/dom-core';
6import { NodeListType } from './getChildrenJSON';
7declare function getHtmlByNodeList(nodeList: NodeListType, parent?: Node): DomElement;
8export default getHtmlByNodeList;