Skip to content

Commit d407509

Browse files
authored
Merge pull request #25 from cdeutsch/sync-query-string-v7.1.1
Sync query string v7.1.1
2 parents d2ec56b + b870769 commit d407509

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export interface ParseOptions {
172172
}
173173

174174
export interface ParsedQuery<T = string> {
175-
[key: string]: T | T[] | null;
175+
[key: string]: T | null | Array<T | null>;
176176
}
177177

178178
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "query-string-for-all",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"description": "Parse and stringify URL query strings",
55
"license": "MIT",
66
"repository": "cdeutsch/query-string-for-all",

0 commit comments

Comments
 (0)