Corrected Nodejs querystring (un)escape definitions

This commit is contained in:
atrakeur
2015-02-13 23:09:36 +01:00
parent 7d298be1db
commit a5c37c4ea3
5 changed files with 28 additions and 6 deletions
+2 -2
View File
@@ -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" {