UNPKG

827 BTypeScriptView Raw
1export declare class APIConfig {
2 static WEB_PORT: number;
3 static API_URL_BASE: string;
4 static LAZY_LOAD_APIS: boolean;
5 static RUN_AS_SERVER: boolean;
6 static DISPLAY_RAW_ERRORS: boolean;
7 static LOG_400_ERRORS: boolean;
8 static LOG_500_ERRORS: boolean;
9 static OUTPUT_HAPI_RESULTS: boolean;
10 static AWS_REGION: string;
11 static ENCRYPTION_SECRET: string;
12 static KV_STORAGE_SERVICE_PROVIDER: "MemoryKVService" | "DiskKVService" | "DynamoDBKVService";
13 static DISK_KV_STORAGE_ROOT_PATH: string;
14 static ENCRYPT_KV_DATA: boolean;
15 static DYNAMO_KV_STORAGE_TABLE_NAME: string;
16 static FILE_STORAGE_SERVICE_PROVIDER: "DiskFileService" | "S3FileService";
17 static DISK_FILE_SERVICE_ROOT_PATH: string;
18 static S3_FILE_SERVICE_BUCKET_NAME: string;
19 static JWT_SECRET: string;
20}