mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-01 04:08:16 +00:00
21 lines
402 B
TypeScript
21 lines
402 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;
|
|
}
|
|
}
|
|
}
|
|
export {};
|