From e6967ede70df856a3438beee9b10662a69233582 Mon Sep 17 00:00:00 2001 From: Joe Herman Date: Wed, 1 Jul 2015 16:10:11 -0400 Subject: [PATCH] node: Added stack to NodeJS.ErrnoException --- node/node-0.10.d.ts | 1 + node/node-0.11.d.ts | 1 + node/node-0.8.8.d.ts | 1 + node/node.d.ts | 1 + 4 files changed, 4 insertions(+) diff --git a/node/node-0.10.d.ts b/node/node-0.10.d.ts index 74e6cd3eac..5c095596c4 100644 --- a/node/node-0.10.d.ts +++ b/node/node-0.10.d.ts @@ -83,6 +83,7 @@ declare module NodeJS { code?: string; path?: string; syscall?: string; + stack?: string; } export interface EventEmitter { diff --git a/node/node-0.11.d.ts b/node/node-0.11.d.ts index ec22b92a88..b45ba637c6 100644 --- a/node/node-0.11.d.ts +++ b/node/node-0.11.d.ts @@ -83,6 +83,7 @@ declare module NodeJS { code?: string; path?: string; syscall?: string; + stack?: string; } export interface EventEmitter { diff --git a/node/node-0.8.8.d.ts b/node/node-0.8.8.d.ts index cf61184a4a..154025749e 100644 --- a/node/node-0.8.8.d.ts +++ b/node/node-0.8.8.d.ts @@ -73,6 +73,7 @@ interface ErrnoException extends Error { code?: string; path?: string; syscall?: string; + stack?: string; } interface EventEmitter { diff --git a/node/node.d.ts b/node/node.d.ts index 0c6b42740d..2865aedd4e 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -144,6 +144,7 @@ declare module NodeJS { code?: string; path?: string; syscall?: string; + stack?: string; } export interface EventEmitter {