-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodule.d.ts
More file actions
32 lines (32 loc) · 908 Bytes
/
module.d.ts
File metadata and controls
32 lines (32 loc) · 908 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
28
29
30
31
32
declare namespace NodeJS {
export interface ProcessEnv {
ETHEREUMPRIVATEKEY: string;
AUTHNAME: string;
AUTHUSERNAME: string;
BITCOINPRIVATEKEY: string;
AUTHID: string;
ECDHPUBLICKEY: string;
SEED: string;
AUTHEMAIL: string;
REFLOWPRIVATEKEY: string;
ECDHPRIVATEKEY: string;
EDDSAPUBLICKEY: string;
REFLOWPUBLICKEY: string;
BITCOINPUBLICKEY: string;
ETHEREUMADDRESS: string;
EDDSAPRIVATEKEY: string;
HMAC: string;
ANSWER1: string;
ANSWER2: string;
ANSWER3: string;
ANSWER4: string;
ANSWER5: string;
NEXT_PUBLIC_INVITATION_KEY: string;
NOT_FOUND_LIMIT: string;
OTHERUSERID: string;
PROJECT_ID: string;
RESOURCE_ID: string;
INCLUDED_PROJECT_1: string;
INCLUDED_PROJECT_2: string;
}
}