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 {