From 79d3a4e6480aef4b4e9432c23100912ce4ccabc0 Mon Sep 17 00:00:00 2001 From: Bartvds Date: Fri, 26 Apr 2013 18:30:15 +0200 Subject: [PATCH] require.resolve - added id argument --- node/node.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node.d.ts b/node/node.d.ts index d2cd41104a..9434764e46 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -33,7 +33,7 @@ declare function clearInterval(intervalId: any); declare var require: { (id: string): any; - resolve(): string; + resolve(id:string): string; cache: any; extensions: any; }