UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

11 lines 503 B
import { stringify } from "yaml"; export declare const getAutoGeneratedHeader: (commentChar: string) => string; export declare const writeGeneratedFile: (path: string, content: string, { commentChar }: { commentChar: string; }) => Promise<void>; type StringifyOptions = Exclude<Parameters<typeof stringify>[2], null | undefined | string | number>; export declare const yamlStringifyOptions: StringifyOptions; export declare const writeYamlfile: (path: string, data: any) => Promise<void>; export {};