Wait for the process to exit and return its exit code.
()
| 20 | readonly exitCode: number | null; |
| 21 | /** Wait for the process to exit and return its exit code. */ |
| 22 | wait(): Promise<number>; |
| 23 | /** Send a signal to the process (defaults to `SIGTERM`). */ |
| 24 | kill(signal?: NodeJS.Signals): Promise<void>; |
| 25 | /** Release stdin/stdout/stderr resources owned by this process wrapper. */ |
no outgoing calls