forked from internxt/drive-desktop-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
27 lines (26 loc) · 646 Bytes
/
env.d.ts
File metadata and controls
27 lines (26 loc) · 646 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
declare global {
namespace NodeJS {
interface ProcessEnv {
CRYPTO_KEY: string;
MAGIC_IV: string;
MAGIC_SALT: string;
NEW_CRYPTO_KEY: string;
API_URL: string;
NEW_DRIVE_URL: string;
DRIVE_URL: string;
BRIDGE_URL: string;
APP_SEGMENT_KEY: string;
APP_SEGMENT_KEY_TEST: string;
BUG_REPORTING_URL: string;
platform: string;
NOTIFICATIONS_URL: string;
LOCK_REFRESH_INTERVAL: string;
PHOTOS_URL: string;
RUDDERSTACK_KEY: string;
RUDDERSTACK_DATA_PLANE_URL: string;
DRIVE_API_URL: string;
SENTRY_DSN: string;
}
}
}
export {};