@zcorky/query-string
Advanced tools
Comparing version 1.0.1 to 1.0.2
export interface ParsedValue { | ||
[key: string]: string | string[]; | ||
} | ||
export interface Parse { | ||
(query: string): ParsedValue; | ||
} | ||
export declare const parse: Parse; | ||
export declare const parse: <T extends ParsedValue>(query?: string) => T & ParsedValue; |
{ | ||
"name": "@zcorky/query-string", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Easy query string in node and browser, without any dependencies, support parse/stringify/add/omit/pick", | ||
@@ -29,3 +29,3 @@ "main": "lib/index.js", | ||
"tslint-jsdoc-rules": "^0.1.2", | ||
"typescript": "^2.8.3" | ||
"typescript": "^3.1.6" | ||
}, | ||
@@ -32,0 +32,0 @@ "files": [ |
8101
115