@types/ini
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -11,6 +11,10 @@ interface EncodeOptions { | ||
export function decode(str: string): { | ||
interface DecodeOptions { | ||
bracketedArray?: boolean; | ||
} | ||
export function decode(str: string, options?: DecodeOptions): { | ||
[key: string]: any; | ||
}; | ||
export function parse(str: string): { | ||
export function parse(str: string, options?: DecodeOptions): { | ||
[key: string]: any; | ||
@@ -17,0 +21,0 @@ }; |
{ | ||
"name": "@types/ini", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "TypeScript definitions for ini", | ||
@@ -33,4 +33,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ini", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "f39a2f5f2dce159ae141ec9f165113d0a099943a6aa29b6f522e00f88e8c5a1d", | ||
"typeScriptVersion": "4.6" | ||
"typesPublisherContentHash": "fb34b1090e26e9e48ebb49b4c0e27d67ef209ce93b090b4aa2c34f5b31096701", | ||
"typeScriptVersion": "4.7" | ||
} |
@@ -21,6 +21,10 @@ # Installation | ||
export function decode(str: string): { | ||
interface DecodeOptions { | ||
bracketedArray?: boolean; | ||
} | ||
export function decode(str: string, options?: DecodeOptions): { | ||
[key: string]: any; | ||
}; | ||
export function parse(str: string): { | ||
export function parse(str: string, options?: DecodeOptions): { | ||
[key: string]: any; | ||
@@ -36,3 +40,3 @@ }; | ||
### Additional Details | ||
* Last updated: Wed, 27 Dec 2023 07:35:34 GMT | ||
* Last updated: Sun, 09 Jun 2024 05:35:20 GMT | ||
* Dependencies: none | ||
@@ -39,0 +43,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4287
22
44