Process no exitCode (#10778)

According to [node.js v4 doc - exitCode](https://nodejs.org/dist/latest-v4.x/docs/api/process.html#process_process_exitcode), there is exitCode in Process.
This commit is contained in:
TonyYang
2016-08-30 20:28:37 +08:00
committed by Masahiro Wakame
parent a08ce8c057
commit 7996f3337d

1
node/node-4.d.ts vendored
View File

@@ -290,6 +290,7 @@ declare namespace NodeJS {
cwd(): string;
env: any;
exit(code?: number): void;
exitCode: number;
getgid(): number;
setgid(id: number): void;
setgid(id: string): void;