mirror of
https://github.com/dadosfera/maestro.git
synced 2026-08-31 19:58:21 +00:00
22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'test';
|
|
ENV: 'local' | 'stg' | 'prd' | 'test';
|
|
LOCAL_ENV: 'stg' | 'prd';
|
|
|
|
DUC_URL: string;
|
|
INFACTORY_URL: string;
|
|
PIFACTORY_URL: string;
|
|
|
|
INTERNAL_SWAGGER: 'true' | 'false';
|
|
|
|
AWS_REGION: string;
|
|
OPEN_GROUP_ID: string;
|
|
OPEN_CUSTOMER_ID: string;
|
|
DEDICATED_PROXY: string;
|
|
}
|
|
}
|
|
}
|
|
export {};
|