Merge pull request #4793 from Penryn/master

node: Added 'stack' to NodeJS.ErrnoException
This commit is contained in:
Masahiro Wakame
2015-07-03 22:08:58 +09:00
4 changed files with 4 additions and 0 deletions
+1
View File
@@ -83,6 +83,7 @@ declare module NodeJS {
code?: string;
path?: string;
syscall?: string;
stack?: string;
}
export interface EventEmitter {
+1
View File
@@ -83,6 +83,7 @@ declare module NodeJS {
code?: string;
path?: string;
syscall?: string;
stack?: string;
}
export interface EventEmitter {
+1
View File
@@ -73,6 +73,7 @@ interface ErrnoException extends Error {
code?: string;
path?: string;
syscall?: string;
stack?: string;
}
interface EventEmitter {
+1
View File
@@ -144,6 +144,7 @@ declare module NodeJS {
code?: string;
path?: string;
syscall?: string;
stack?: string;
}
export interface EventEmitter {