From 901808304ddc8d1bbebbd6e531fafb7e645d41d8 Mon Sep 17 00:00:00 2001 From: impinball Date: Thu, 19 Mar 2015 03:08:38 -0400 Subject: [PATCH] Fix ErrnoException See https://github.com/joyent/node/blob/v0.10.1-release/src/node.cc#L750 --- node/node-0.10.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node-0.10.d.ts b/node/node-0.10.d.ts index 73f9627820..74e6cd3eac 100644 --- a/node/node-0.10.d.ts +++ b/node/node-0.10.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;