-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefines.d.ts
61 lines (58 loc) · 939 Bytes
/
defines.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
55
56
57
58
59
60
61
declare module '*.png';
declare module '*.jpg';
declare module '*.svg';
declare module '*.gif';
declare module '*.glb';
declare module '*.gltf';
declare module '*.fbx';
declare module '*.obj';
declare module '*.mp3';
declare module '*.ogg';
declare module '*.wav';
declare const PLATFORM:
| 'browser'
| 'crazygames'
| 'poki'
| 'kongregate'
| 'newgrounds'
| 'y8'
| 'gamedistribution'
| 'miniclip'
| 'itch'
| 'gamejolt'
| 'simmer'
| 'googleplay'
| 'appstore'
| 'galaxystore'
| 'amazonappstore'
| 'facebook'
| 'snapchat'
| 'wechat'
| 'tiktok'
| 'telegram'
| 'sandbox'
| 'opgames'
| 'immutablex';
declare const LANGUAGE:
| 'auto'
| 'en'
| 'es'
| 'zh'
| 'hi'
| 'ar'
| 'fr'
| 'de'
| 'ja'
| 'pt'
| 'it'
| 'ko'
| 'tr'
| 'nl'
| 'sv'
| 'pl'
| 'uk'
| 'id'
| 'vi';
declare const APP_NAME: string;
declare const APP_VERSION: string;
declare const __DEV__: boolean;