UNPKG

324 BTypeScriptView Raw
1export declare enum GCPEnv {
2 APP_ENGINE = "APP_ENGINE",
3 KUBERNETES_ENGINE = "KUBERNETES_ENGINE",
4 CLOUD_FUNCTIONS = "CLOUD_FUNCTIONS",
5 COMPUTE_ENGINE = "COMPUTE_ENGINE",
6 CLOUD_RUN = "CLOUD_RUN",
7 NONE = "NONE"
8}
9export declare function clear(): void;
10export declare function getEnv(): Promise<GCPEnv>;