12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
/**
|
|
* Generate an XML plist string from the input object `obj`.
|
|
*
|
|
* @param {Object} obj - the object to convert
|
|
* @param {Object} [opts] - optional options object
|
|
* @returns {String} converted plist XML string
|
|
* @api public
|
|
*/
|
|
export declare function build(obj: any, opts?: {
|
|
[key: string]: any;
|
|
}): string;
|