From 332390e693119ff8e92bef15cd4ab103e910db50 Mon Sep 17 00:00:00 2001 From: Jxck Date: Fri, 3 Oct 2014 20:12:26 +0900 Subject: [PATCH] fixup util.isArray() & require("url").Url.query --- node/node-0.11.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node/node-0.11.d.ts b/node/node-0.11.d.ts index 40387fc950..2da9c47c62 100644 --- a/node/node-0.11.d.ts +++ b/node/node-0.11.d.ts @@ -658,7 +658,7 @@ declare module "url" { host: string; pathname: string; search: string; - query: string; + query: any; // string | Object slashes: boolean; hash?: string; path?: string; @@ -1230,6 +1230,7 @@ declare module "util" { export function debuglog(set: string): Function; export function inspect(object: any, showHidden?: boolean, depth?: number, color?: boolean): string; export function inspect(object: any, options: InspectOptions): string; + export function isArray(object: any): boolean; export function isBoolean(arg: any): boolean; export function isNull(arg: any): boolean; export function isNullOrUndefined(arg: any): boolean;