From 6dfc9b47d2f66cb4ec75f52a7c98f5c27ffbbc05 Mon Sep 17 00:00:00 2001 From: impinball Date: Thu, 19 Mar 2015 03:12:46 -0400 Subject: [PATCH] Fix ErrnoException See https://github.com/joyent/node/blob/v0.12.0-release/src/node.cc#L762 --- 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 f20fdeb26d..7207d04fd8 100644 --- a/node/node.d.ts +++ b/node/node.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;