Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/qs

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/qs - npm Package Compare versions

Comparing version 6.9.1 to 6.9.2

9

qs/index.d.ts

@@ -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 };
}

6

qs/package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc