8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
/**
|
|
* Serializes the given data structure into valid YAML.
|
|
*
|
|
* @param obj the data structure to serialize
|
|
* @returns a string containing the YAML representation of {@param obj}
|
|
*/
|
|
export declare function serialize(obj: any): string;
|