##// END OF EJS Templates
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods

File last commit:

r30:a46488b209e8 v1.0.0-rc14 default
r30:a46488b209e8 v1.0.0-rc14 default
Show More
index.d.ts
24 lines | 410 B | video/mp2t | TypeScriptLexer
cin
sync
r7 declare module "@implab/djx/css!*" {
cin
Fixed @implab/djx/index typings
r10 const result: { url: string };
cin
sync
r7 export = result;
}
cin
fixed strict mode @bind decorator
r28
declare namespace JSX {
interface IntrinsicElements {
[name: string]: any;
}
}
cin
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods
r30
declare namespace dijit {
interface _WidgetBase {
_started?: boolean;
_set<K extends keyof this>(key: K, value: this[K]): void;
}
interface TooltipDialog {
content: any;
}
}