mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-03-05 05:52:17 +08:00
5 lines
275 B
TypeScript
5 lines
275 B
TypeScript
import * as yaml from 'js-yaml';
|
|
export declare function loadYaml<T>(data: string, opts?: yaml.LoadOptions): T;
|
|
export declare function loadAllYaml(data: string, opts?: yaml.LoadOptions): any[];
|
|
export declare function dumpYaml(object: any, opts?: yaml.DumpOptions): string;
|