-
Notifications
You must be signed in to change notification settings - Fork 1
/
global.d.ts
54 lines (43 loc) · 1018 Bytes
/
global.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
declare module '*.icon.svg' {
const component: React.ComponentType<React.SVGProps<SVGSVGElement>>
export default component
}
declare module '*.svg' {
const text: string
export default text
}
declare module '*.png' {
const text: string
export default text
}
declare module '*.jpg' {
const text: string
export default text
}
declare module '*.ico' {
const text: string
export default text
}
declare module '*.csv' {
const text: string
export default text
}
declare module '*.txt' {
const text: string
export default text
}
declare module '*.dos' {
const text: string
export default text
}
declare module '*.sass' {
const classes: { readonly [key: string]: string }
export default classes
}
interface Window {
model?: import('react-object-model').Model<any>
shell?: import('react-object-model').Model<any>
dashboard?: import('react-object-model').Model<any>
}
declare const WEB_VERSION: string
declare var PRODUCTION: boolean