File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2152,10 +2152,10 @@ declare namespace process {
2152
2152
export const argv : string [ ] ;
2153
2153
/** Map of variables in the binary's user environment. */
2154
2154
export const env : Map < string , string > ;
2155
- /** Process exit code to use when the process exits gracefully. Defaults to `0`. */
2156
- export var exitCode : i32 ;
2157
2155
/** Terminates the process with either the given exit code, or `process.exitCode` if omitted. */
2158
2156
export function exit ( code ?: i32 ) : void ;
2157
+ /** `exit()`’s default value. Defaults to `0`. */
2158
+ export var exitCode : i32 ;
2159
2159
/** Stream connected to `stdin` (fd `0`). */
2160
2160
export const stdin : ReadableStream ;
2161
2161
/** Stream connected to `stdout` (fd `1`). */
You can’t perform that action at this time.
0 commit comments