UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

12 lines (8 loc) 247 B
declare module "write-yaml-file" { interface WriteYamlFile { (filepath: string, data: any, opts?: any): Promise<void>; sync(filepath: string, data: any, opts?: any): void; } const writeYamlFile: WriteYamlFile; export = writeYamlFile; }