UNPKG

@eggjs/tegg-types

Version:
16 lines (15 loc) 286 B
export type EnvType = 'local' | 'unittest' | 'prod' | string; export interface RuntimeConfig { /** * Application name */ name: string; /** * Application environment */ env: EnvType; /** * Application directory */ baseDir: string; }