@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
14 lines (13 loc) • 433 B
TypeScript
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>;