@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
10 lines • 435 B
TypeScript
/***
* 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[];