-
Notifications
You must be signed in to change notification settings - Fork 16
/
vercel.d.ts
61 lines (57 loc) · 2.1 KB
/
vercel.d.ts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// https://vercel.com/docs/projects/environment-variables/system-environment-variables
declare namespace NodeJS {
interface ProcessEnv {
readonly VERCEL?: "1";
readonly CI?: "1";
/** @see https://vercel.com/docs/edge-network/regions#region-list */
readonly VERCEL_REGION?:
| "arn1"
| "bom1"
| "cdg1"
| "cle1"
| "cpt1"
| "dub1"
| "fra1"
| "gru1"
| "hkg1"
| "hnd1"
| "iad1"
| "icn1"
| "kix1"
| "lhr1"
| "pdx1"
| "sfo1"
| "sin1"
| "syd1"
| "dev1";
readonly VERCEL_ENV?: "production" | "preview" | "development";
readonly VERCEL_URL?: string;
readonly VERCEL_BRANCH_URL?: string;
readonly VERCEL_AUTOMATION_BYPASS_SECRET?: string;
readonly VERCEL_GIT_PROVIDER?: string;
readonly VERCEL_GIT_REPO_SLUG?: string;
readonly VERCEL_GIT_REPO_OWNER?: string;
readonly VERCEL_GIT_REPO_ID?: string;
readonly VERCEL_GIT_COMMIT_REF?: string;
readonly VERCEL_GIT_COMMIT_SHA?: string;
readonly VERCEL_GIT_COMMIT_MESSAGE?: string;
readonly VERCEL_GIT_COMMIT_AUTHOR_LOGIN?: string;
readonly VERCEL_GIT_COMMIT_AUTHOR_NAME?: string;
readonly VERCEL_GIT_PREVIOUS_SHA?: string;
readonly VERCEL_GIT_PULL_REQUEST_ID?: string;
readonly NEXT_PUBLIC_VERCEL_ENV?: "production" | "preview" | "development" | "staging";
readonly NEXT_PUBLIC_VERCEL_URL?: string;
readonly NEXT_PUBLIC_VERCEL_BRANCH_URL?: string;
readonly NEXT_PUBLIC_VERCEL_AUTOMATION_BYPASS_SECRET?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_PROVIDER?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_REPO_SLUG?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_REPO_OWNER?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_REPO_ID?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_COMMIT_MESSAGE?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_COMMIT_AUTHOR_LOGIN?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_COMMIT_AUTHOR_NAME?: string;
readonly NEXT_PUBLIC_VERCEL_GIT_PULL_REQUEST_ID?: string;
}
}