-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.d.ts
34 lines (33 loc) · 874 Bytes
/
index.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
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: "development" | "production" | "test";
PORT: string;
TZ: string;
GMAIL_PASSWORD: string;
NEXT_PUBLIC_GMAIL_PASSWORD: string;
ENCRYPTION_KEY: string;
NEXT_PUBLIC_ENCRYPTION_KEY: string;
GLOBAL_KEY: string;
NEXT_PUBLIC_GLOBAL_KEY: string;
SECRET_KEY: string;
NEXT_PUBLIC_SECRET_KEY: string;
API_KEY: string;
NEXT_PUBLIC_API_KEY: string;
MONGODB_URI: string;
NEXT_PUBLIC_MONGODB_URI: string;
REDIS_TOKEN: string;
NEXT_PUBLIC_REDIS_TOKEN: string;
REDIS_URL: string;
NEXT_PUBLIC_REDIS_URL: string;
}
}
interface Array<T> {
/**
* Sorts the array by priority.
* @returns A new array of projects sorted by priority.
*/
sortByPriority(): any[];
}
}
export {};