File size: 267 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
declare namespace NodeJS {
export interface ProcessEnv {
readonly NODE_ENV: "development" | "production" | "test";
readonly NEXT_PUBLIC_AUTH0_DOMAIN: string;
readonly NEXT_PUBLIC_AUTH0_CLIENT_ID: string;
readonly NEXT_PUBLIC_BASE_URL: string;
}
}
|