forked from jumperexchange/jumper-exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
27 lines (25 loc) · 879 Bytes
/
Copy pathenv.d.ts
File metadata and controls
27 lines (25 loc) · 879 Bytes
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
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BASE_URL: string;
readonly DEV: boolean;
readonly MODE: 'development' | 'testnet' | 'production' | 'staging';
readonly PROD: boolean;
readonly SSR: boolean;
readonly VITE_ARCX_API_KEY: string;
readonly VITE_GOOGLE_ANALYTICS_TRACKING_ID: string;
readonly VITE_HOTJAR_ID: number;
readonly VITE_HOTJAR_SNIPPET_VERSION: number;
readonly VITE_SENTRY_DSN: string;
readonly VITE_CUSTOM_RPCS: string;
readonly VITE_WIDGET_INTEGRATOR: string;
readonly VITE_LIFI_API_URL: string;
readonly VITE_ONRAMPER_ENABLED: string;
readonly VITE_STRAPI_DEVELOP: string;
readonly VITE_STRAPI_URL: string;
readonly VITE_STRAPI_API_TOKEN: string;
readonly VITE_LOCAL_STRAPI_URL: string;
readonly VITE_LOCAL_STRAPI_API_TOKEN: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}