-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.d.ts
37 lines (32 loc) · 965 Bytes
/
main.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
declare module '*.css' {
const content: string;
export default content;
}
declare module '*.scss' {
const content: string;
export default content;
}
declare module '*.svg' {
const content: string;
export default content;
}
declare module '*.svelte' {
const component: import('svelte').Component;
export default component;
}
declare const GL: typeof import('./src/api/api').default;
/** @deprecated Use GL.stores */
declare const stores: any;
/** @deprecated Polyfills for Gimhook mods. Please use the built-in modding API */
declare const gimhook: any;
/** @deprecated No longer supported */
declare const platformerPhysics: any;
interface Window {
GL: typeof import('./src/api/api').default;
/** @deprecated Use GL.stores */
stores: any;
/** @deprecated Polyfills for Gimhook mods. Please use the built-in modding API */
gimhook: any;
/** @deprecated No longer supported */
platformerPhysics: any;
}