Merge pull request #3908 from impinball/patch-1

Fix ErrnoException `errno` type
This commit is contained in:
Masahiro Wakame
2015-03-21 13:17:50 +09:00
6 changed files with 33 additions and 13 deletions
+1 -1
View File
@@ -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;