* The `process.exit()` method instructs llrt to terminate the process * synchronously with an exit status of `code`. If `code` is omitted, exit uses * either the 'success' code `0` or the value of `process.exitCode` if it has been * set. llrt will not terminate until all the `'exit'`
(code?: number | string | null | undefined)
| 183 | * import { exit } from 'process'; |
| 184 | * |
| 185 | * exit(1); |
| 186 | * ``` |
| 187 | */ |
| 188 | exit(code?: number | string | null | undefined): never; |
no outgoing calls
no test coverage detected