-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefines.d.ts
43 lines (39 loc) · 976 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
declare module '*.png';
declare module '*.jpg';
declare module '*.svg';
declare module '*.glb';
declare module '*.gltf';
declare module '*.fbx';
declare module '*.obj';
declare module '*.mp3';
declare const AD_NETWORK:
| 'preview'
| 'applovin'
| 'unity'
| 'google'
| 'ironsource'
| 'facebook'
| 'moloco'
| 'mintegral'
| 'vungle'
| 'adcolony'
| 'tapjoy'
| 'snapchat'
| 'tiktok'
| 'appreciate'
| 'chartboost'
| 'pangle'
| 'mytarget'
| 'liftoff';
declare const AD_PROTOCOL: 'mraid' | 'dapi' | 'nucleo' | 'none';
declare const GOOGLE_PLAY_URL: string;
declare const APP_STORE_URL: string;
declare const APP: string;
declare const NAME: string;
declare const VERSION: string;
declare const LANGUAGE: 'auto' | 'en' | 'es' | 'zh' | 'hi' | 'ar' | 'fr' | 'de' | 'ja' | 'pt';
declare const BUILD_APP: string;
declare const BUILD_NAME: string;
declare const BUILD_VERSION: string;
declare const BUILD_HASH: string;
declare const __DEV__: boolean;