export declare enum PublishType { NORMAL = "assets", OVERWRITE = "assets_o" } export declare enum BuildType { Dev = 1, Prod = 2, Local = 4, Cloud = 8, Dev_Local = 5, Dev_Cloud = 9, Prod_Local = 6, Prod_Cloud = 10 } export interface Evnrioment { gitBranch?: string; gitGroup?: string; gitProject?: string; publishType?: string; windConfigFile?: string; defConfigFile?: string; nodeEnv?: string; logLevel?: string; buildArgv?: string; buildDestDir?: string; builderDir?: string; workingDir?: string; buildEnv?: string; buildType: BuildType; isProd: () => boolean; isDev: () => boolean; isCloudBuild: () => boolean; isLocalBuild: () => boolean; }