UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

11 lines (10 loc) 436 B
/*** * creates a yaml string that can be used in bash scripts * it handles BashExpressions correctly so that they can be evaluated in bash */ export declare const yamlBashString: (value: any) => string; /** * creates a bash script that writes a yaml string to a file * @param value the yaml value to write, it supports BashExpressions */ export declare const writeBashYamlToFileScript: (value: any, filename: string) => string[];