##// END OF EJS Templates
Corrected typings dijit/_WidgetBase, dojo/store
Corrected typings dijit/_WidgetBase, dojo/store

File last commit:

r0:ab570232df7d default
r16:f6ff0b17b520 v1.0.5 default
Show More
DomParser.d.ts
12 lines | 215 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 declare namespace dojox {
namespace xml {
interface DomParser {
parse: (xml: string) => Document;
}
}
}
declare module 'dojox/xml/DomParser' {
const domParser: dojox.xml.DomParser;
export = domParser;
}