@types/xml2json
Advanced tools
Comparing version 0.11.2 to 0.11.3
@@ -10,5 +10,5 @@ // Type definitions for xml2json 0.11 | ||
export function toJson(xml: string | Buffer, options?: { object?: false } & JsonOptions): string; | ||
export function toJson(xml: string | Buffer, options?: { object: true } & JsonOptions): {}; | ||
export function toJson(xml: string | Buffer, options?: { object: true } & JsonOptions): { [key: string]: unknown }; | ||
export function toXml(json: {} | string | Buffer, options?: XmlOptions): string; | ||
export function toXml(json: { [key: string]: unknown } | string | Buffer, options?: XmlOptions): string; | ||
@@ -15,0 +15,0 @@ export interface XmlOptions { |
{ | ||
"name": "@types/xml2json", | ||
"version": "0.11.2", | ||
"version": "0.11.3", | ||
"description": "TypeScript definitions for xml2json", | ||
@@ -29,4 +29,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "337a9613cfddcc2bb8d9663e1d389901f0740744b01c8032b02be9daac056c18", | ||
"typesPublisherContentHash": "514688cba3a5e523ae504145cede2ace15264aca85aa93d955c50e6b2f2373a1", | ||
"typeScriptVersion": "3.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 14 Aug 2020 02:16:02 GMT | ||
* Last updated: Sun, 16 Aug 2020 23:00:01 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
5391