UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

14 lines (13 loc) 461 B
import type { SecretEnvVar, UnspecifiedEnvVars } from ".."; import type { EnvVars } from "../types/config"; /** * transform EnvVars for environment. * * currently does not resolve references and is only used for additional job-only-vars * @param vars * @returns */ export declare const transformJobOnlyVars: (env: string, componentName: string, vars: EnvVars | null) => Promise<{ envVars: UnspecifiedEnvVars; secretEnvVarKeys: SecretEnvVar[]; }>;