##// END OF EJS Templates
Added tag v1.0.0-rc15 for changeset 1174538197f6
Added tag v1.0.0-rc15 for changeset 1174538197f6

File last commit:

r30:a46488b209e8 v1.0.0-rc14 default
r33:3f5cb4deed2a 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;
}
}