Comparing version 6.9.4 to 6.9.5
@@ -57,9 +57,2 @@ // Type definitions for qs 6.9 | ||
// TODO: The value type here is a version of `unknown` which replicates with an acceptably lossy amount of accuracy. | ||
// When these types support TypeScript 3.0+, we can replace this with `unknown`. | ||
type UnknownFacade = {} | null | undefined; | ||
/** @deprecated - UnknownFacade is more clear about what's going on */ | ||
type PoorMansUnknown = UnknownFacade | ||
interface ParsedQs { [key: string]: undefined | string | string[] | ParsedQs | ParsedQs[] } | ||
@@ -69,3 +62,3 @@ | ||
function parse(str: string, options?: IParseOptions & { decoder?: never }): ParsedQs; | ||
function parse(str: string, options?: IParseOptions): { [key: string]: UnknownFacade }; | ||
function parse(str: string, options?: IParseOptions): { [key: string]: unknown }; | ||
} |
{ | ||
"name": "@types/qs", | ||
"version": "6.9.4", | ||
"version": "6.9.5", | ||
"description": "TypeScript definitions for qs", | ||
@@ -62,4 +62,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "439bfa44155bda6199294078b4c73c6e38042c2b583f470b75d740a50e4c7125", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "1a8820a6aece2344fa333148c105b71a132db5e68f839c47934a78889cd44574", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 24 Jul 2020 21:38:26 GMT | ||
* Last updated: Wed, 16 Sep 2020 23:05:37 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `qs` |
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
6493
57