-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
13 lines (13 loc) · 765 Bytes
/
env.d.ts
File metadata and controls
13 lines (13 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
declare module '@env' {
export const BOOTPAY_ENV: 'development' | 'production' | undefined;
export const BOOTPAY_WEB_APPLICATION_ID_DEV: string | undefined;
export const BOOTPAY_WEB_APPLICATION_ID_PROD: string | undefined;
export const BOOTPAY_ANDROID_APPLICATION_ID_DEV: string | undefined;
export const BOOTPAY_ANDROID_APPLICATION_ID_PROD: string | undefined;
export const BOOTPAY_IOS_APPLICATION_ID_DEV: string | undefined;
export const BOOTPAY_IOS_APPLICATION_ID_PROD: string | undefined;
export const BOOTPAY_REST_APPLICATION_ID_DEV: string | undefined;
export const BOOTPAY_REST_APPLICATION_ID_PROD: string | undefined;
export const BOOTPAY_CLIENT_KEY_DEV: string | undefined;
export const BOOTPAY_CLIENT_KEY_PROD: string | undefined;
}