##// END OF EJS Templates
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase

File last commit:

r0:ab570232df7d default
r2:1e22cac2aaf4 v1.0.0-rc1 default
Show More
NodeList-html.d.ts
16 lines | 421 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 /// <reference path="dojo.d.ts" />
declare namespace dojo {
interface NodeList<T extends Node> {
/**
* 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<T extends Node> = dojo.NodeList<T>;
const NodeList: dojo.NodeListConstructor;
export = NodeList;
}