@types/url-search-params
Advanced tools
Comparing version
@@ -1,8 +0,1 @@ | ||
// Type definitions for url-search-params 1.1 | ||
// Project: https://github.com/WebReflection/url-search-params | ||
// Definitions by: Nick <https://github.com/nick121212> | ||
// Neha <https://github.com/nrathi> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.1 | ||
/** | ||
@@ -9,0 +2,0 @@ * Based on definitions of lib.dom and lib.dom.iteralbe |
{ | ||
"name": "@types/url-search-params", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "TypeScript definitions for url-search-params", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/url-search-params", | ||
"license": "MIT", | ||
@@ -9,21 +10,22 @@ "contributors": [ | ||
"name": "Nick", | ||
"url": "https://github.com/nick121212", | ||
"githubUsername": "nick121212" | ||
"githubUsername": "nick121212", | ||
"url": "https://github.com/nick121212" | ||
}, | ||
{ | ||
"name": "Neha", | ||
"url": "https://github.com/nrathi", | ||
"githubUsername": "nrathi" | ||
"githubUsername": "nrathi", | ||
"url": "https://github.com/nrathi" | ||
} | ||
], | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/url-search-params" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "b3014b0bb91504fd201a843637af060d3cba36d268c20a04c382bddbf15288e7", | ||
"typeScriptVersion": "2.1" | ||
"typesPublisherContentHash": "2b10bbca4940ef37951fbbc74da369d42e4f7b16cd12e294cdf21b51a400960b", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -8,10 +8,35 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/url-search-params | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/url-search-params. | ||
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/url-search-params/index.d.ts) | ||
````ts | ||
/** | ||
* Based on definitions of lib.dom and lib.dom.iteralbe | ||
*/ | ||
declare class URLSearchParams { | ||
constructor(init?: string[][] | Record<string, string> | string | URLSearchParams); | ||
Additional Details | ||
* Last updated: Tue, 25 Dec 2018 21:10:50 GMT | ||
append(name: string, value: string): void; | ||
delete(name: string): void; | ||
get(name: string): string | null; | ||
getAll(name: string): string[]; | ||
has(name: string): boolean; | ||
set(name: string, value: string): void; | ||
sort(): void; | ||
forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void; | ||
[Symbol.iterator](): IterableIterator<[string, string]>; | ||
entries(): IterableIterator<[string, string]>; | ||
keys(): IterableIterator<string>; | ||
values(): IterableIterator<string>; | ||
} | ||
export = URLSearchParams; | ||
```` | ||
### Additional Details | ||
* Last updated: Wed, 18 Oct 2023 11:45:07 GMT | ||
* Dependencies: none | ||
* Global values: none | ||
# Credits | ||
These definitions were written by Nick <https://github.com/nick121212>, Neha <https://github.com/nrathi>. | ||
These definitions were written by [Nick](https://github.com/nick121212), and [Neha](https://github.com/nrathi). |
Sorry, the diff of this file is not supported yet
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
4299
18.99%0
-100%42
147.06%19
-24%