UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

8 lines 440 B
import type { SecretEnvVar } from "../getEnvironmentVariables"; export declare const stringifyValues: (obj: Record<string, unknown>) => { [k: string]: string; }; export declare const stringListToSecreteEnvVarList: (keys: string[]) => SecretEnvVar[]; export declare const makeSecretEnvVarMapping: (env: string, componentName: string, secretEnvVars: SecretEnvVar[]) => { [k: string]: import("../../bash/BashExpression").BashExpression; };