mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Corrected Nodejs querystring (un)escape definitions
This commit is contained in:
Vendored
+2
-2
@@ -203,8 +203,8 @@ interface Buffer {
|
||||
declare module "querystring" {
|
||||
export function stringify(obj: any, sep?: string, eq?: string): string;
|
||||
export function parse(str: string, sep?: string, eq?: string, options?: { maxKeys?: number; }): any;
|
||||
export function escape(): any;
|
||||
export function unescape(): any;
|
||||
export function escape(str: string): string;
|
||||
export function unescape(str: string): string;
|
||||
}
|
||||
|
||||
declare module "events" {
|
||||
|
||||
Reference in New Issue
Block a user