UNPKG

309 BTypeScriptView Raw
1export as namespace YAML;
2export = YAML;
3
4declare namespace YAML {
5 function load(path: string): any;
6
7 function load(path: string, callback: (res: any) => void): void;
8
9 function stringify(nativeObject: any, inline?: number, spaces?: number): string;
10
11 function parse(yamlString: string): any;
12}