-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathenvironment.d.ts
More file actions
24 lines (21 loc) · 694 Bytes
/
Copy pathenvironment.d.ts
File metadata and controls
24 lines (21 loc) · 694 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
// This file is needed to support autocomplete for process.env
export {};
declare global {
namespace NodeJS {
interface ProcessEnv {
// app base url
NEXT_PUBLIC_APP_BASE_URL: string;
// appwrite project and key
NEXT_PUBLIC_APPWRITE_ENDPOINT: string;
NEXT_PUBLIC_APPWRITE_PROJECT: string;
NEXT_PUBLIC_APPWRITE_IMAGES_BUCKET_ID: string;
NEXT_APPWRITE_KEY: string;
// appwrite database ids
NEXT_PUBLIC_APPWRITE_DATABASE_ID: string;
NEXT_PUBLIC_APPWRITE_MEMBERS_ID: string;
NEXT_PUBLIC_APPWRITE_PROJECTS_ID: string;
NEXT_PUBLIC_APPWRITE_TASKS_ID: string;
NEXT_PUBLIC_APPWRITE_WORKSPACES_ID: string;
}
}
}