Files
2026-05-06 18:55:16 -05:00

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;