##// END OF EJS Templates
Support for Function Components...
Support for Function Components Added JSX.IntrinsicElements

File last commit:

r34:e8012fdf09ae 1.0.0-rc16 default
r34:e8012fdf09ae 1.0.0-rc16 default
Show More
index.d.ts
29 lines | 658 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 {
cin
Support for Function Components...
r34 interface DjxIntrinsicAttributes {
class: string;
"data-dojo-attach-point": string;
"data-dojo-attach-event": string;
}
type IntrinsicElements = {
[name in keyof HTMLElementTagNameMap]: Partial<Omit<HTMLElementTagNameMap[name], "children"> & DjxIntrinsicAttributes>;
cin
fixed strict mode @bind decorator
r28 }
}
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;
}
}