UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

13 lines 432 B
import type { BashExpression } from "../../../bash/BashExpression"; /** * creates arguments string: * * --key=value * * - undefined or null values will get removed completly * - true will just be "--key" * @param args args record * @returns */ export declare const createArgsString: (...args: keyValuesArg[]) => string; export type keyValuesArg = Record<string, string | number | true | false | undefined | BashExpression>;