Blame view

environment.d.ts 644 Bytes
5d134410   张志伟   🐱 feat(*): init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  declare namespace NodeJS {
    export interface ProcessEnv {
      /** 接口网关地址 */
      readonly API_HOST: string;
      /** 文件上传地址 */
      readonly FILE_HOST: string;
      /** 本地地址 */
      readonly XHOST: string;
      /** 本地服务端口 */
      readonly XPORT: string;
      /** 项目名称 */
      readonly APP_NAME?: string;
  
      /************ 运行时参数 ***********************/
      /** appid */
      readonly MODERN_APP_ID: string;
      /** key */
      readonly MODERN_CALKEY: string;
      /** GRAY_TAG */
      readonly MODERN_GRAY_TAG?: string;
      /** 接口网关地址 */
      readonly MODERN_DOMAIN?: string;
    }
  }