diff --git a/node/node-0.10.d.ts b/node/node-0.10.d.ts index 74e6cd3ea..5c095596c 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 ec22b92a8..b45ba637c 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 cf61184a4..154025749 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 0c6b42740..2865aedd4 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 {