///
declare namespace dojo {
interface NodeList {
/**
* see `dojo/html.set()`. Set the content of all elements of this NodeList
*/
html(cont?: ContentSetterContent, params?: ContentSetterParams): this;
}
}
declare module 'dojo/NodeList-html' {
type NodeList = dojo.NodeList;
const NodeList: dojo.NodeListConstructor;
export = NodeList;
}