Files
node-pkg-express-utils/out/config.d.ts
Sebastian Seedorf 2629d1e8e9 inital #2
2020-11-16 10:01:58 +01:00

18 lines
564 B
TypeScript

declare function requireEnv(name: string, onlyInProduction?: boolean): void;
export declare const DefaultConfig: {
EXTERNAL_BASE_URL: string;
isProduction: boolean;
requireEnv: typeof requireEnv;
NODE_ENV: string;
PORT: number;
HOSTNAME: string;
BASE_PATH: string;
REDIS_URL: string | undefined;
SESSION_SECRET: string | undefined;
USERINFO_HEADER: string | undefined;
AUTH_PROXY_URL: string | undefined;
AUTH_PROXY_USERINFO_URL: string | undefined;
AUTH_PROXY_INIT_LOGOUT_URL: string | undefined;
};
export {};