From f7a0bc8ee18c88ad773786eb2c9bb379de05b38b Mon Sep 17 00:00:00 2001 From: impinball Date: Thu, 19 Mar 2015 03:11:03 -0400 Subject: [PATCH] Fix ErrnoException See https://github.com/joyent/node/blob/v0.11.13-release/src/node.cc#L752 --- node/node-0.11.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node-0.11.d.ts b/node/node-0.11.d.ts index 302ba12a9..ec22b92a8 100644 --- a/node/node-0.11.d.ts +++ b/node/node-0.11.d.ts @@ -79,7 +79,7 @@ declare var Buffer: { ************************************************/ declare module NodeJS { export interface ErrnoException extends Error { - errno?: any; + errno?: number; code?: string; path?: string; syscall?: string;