-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
14 lines (14 loc) · 881 Bytes
/
env.d.ts
File metadata and controls
14 lines (14 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
// 주의: secret_key (secret) 는 클라이언트에 절대 포함하지 말 것 — 서버 SDK 에서만 사용
}