We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac01b0a commit 618460cCopy full SHA for 618460c
std/assembly/index.d.ts
@@ -2152,10 +2152,10 @@ declare namespace process {
2152
export const argv: string[];
2153
/** Map of variables in the binary's user environment. */
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
/** Terminates the process with either the given exit code, or `process.exitCode` if omitted. */
2158
export function exit(code?: i32): void;
+ /** `exit()`’s default value. Defaults to `0`. */
+ export var exitCode: i32;
2159
/** Stream connected to `stdin` (fd `0`). */
2160
export const stdin: ReadableStream;
2161
/** Stream connected to `stdout` (fd `1`). */
0 commit comments