mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-21 00:28:23 +08:00
14 lines
479 B
TypeScript
14 lines
479 B
TypeScript
// Type definitions for camaro 2.2
|
|
// Project: https://github.com/tuananh/camaro
|
|
// Definitions by: Tuan Anh Tran <https://github.com/tuananh>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
/**
|
|
* Transform the input xml to json using the input template object.
|
|
* @param input The input xml string
|
|
* @param template The output template
|
|
*/
|
|
declare function transform(input: string, template: object): object;
|
|
export = transform;
|