index.d.ts
29 lines
| 658 B
| video/mp2t
|
TypeScriptLexer
cin
|
r7 | declare module "@implab/djx/css!*" { | |
cin
|
r10 | const result: { url: string }; | |
cin
|
r7 | export = result; | |
} | |||
cin
|
r28 | ||
declare namespace JSX { | |||
cin
|
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
|
r28 | } | |
} | |||
cin
|
r30 | ||
declare namespace dijit { | |||
interface _WidgetBase { | |||
_started?: boolean; | |||
_set<K extends keyof this>(key: K, value: this[K]): void; | |||
} | |||
interface TooltipDialog { | |||
content: any; | |||
} | |||
} |