Comparing version 6.9.1 to 6.9.2
@@ -58,4 +58,11 @@ // Type definitions for qs 6.9 | ||
interface ParsedQs { [key: string]: string | string[] | ParsedQs | ParsedQs[] } | ||
// TODO: The value type here is a "poor man's `unknown`". When these types support TypeScript | ||
// 3.0+, we can replace this with `unknown`. | ||
type PoorMansUnknown = {} | null | undefined; | ||
function stringify(obj: any, options?: IStringifyOptions): string; | ||
function parse(str: string, options?: IParseOptions): any; | ||
function parse(str: string, options?: IParseOptions & { decoder?: never }): ParsedQs; | ||
function parse(str: string, options?: IParseOptions): { [key: string]: PoorMansUnknown }; | ||
} |
{ | ||
"name": "@types/qs", | ||
"version": "6.9.1", | ||
"version": "6.9.2", | ||
"description": "TypeScript definitions for qs", | ||
@@ -62,4 +62,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "2dd3b4ff02c2d1e8d50c50d81e4bdc93231041cc7c8bfe36b5cce4558ae16bcf", | ||
"typeScriptVersion": "2.8" | ||
"typesPublisherContentHash": "6ca7866c8cbb7803dc311abd6a2d41bc9926b3646819fb2cec2e0d32d0b5b29a", | ||
"typeScriptVersion": "2.9" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 07 Feb 2020 18:24:08 GMT | ||
* Last updated: Tue, 05 May 2020 16:44:22 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: `qs` | ||
# Credits | ||
These definitions were written by Roman Korneev (https://github.com/RWander), Leon Yu (https://github.com/leonyu), Belinda Teh (https://github.com/tehbelinda), Melvin Lee (https://github.com/zyml), Arturs Vonda (https://github.com/artursvonda), Carlos Bonetti (https://github.com/CarlosBonetti), Dan Smith (https://github.com/dpsmith3), Hunter Perrin (https://github.com/hperrin), and Jordan Harband (https://github.com/ljharb). | ||
These definitions were written by [Roman Korneev](https://github.com/RWander), [Leon Yu](https://github.com/leonyu), [Belinda Teh](https://github.com/tehbelinda), [Melvin Lee](https://github.com/zyml), [Arturs Vonda](https://github.com/artursvonda), [Carlos Bonetti](https://github.com/CarlosBonetti), [Dan Smith](https://github.com/dpsmith3), [Hunter Perrin](https://github.com/hperrin), and [Jordan Harband](https://github.com/ljharb). |
Sorry, the diff of this file is not supported yet
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
6688
60