Send a signal to the process (defaults to `SIGTERM`).
(signal?: NodeJS.Signals)
| 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. */ |
| 26 | dispose(): Promise<void> | void; |
| 27 | } |
no outgoing calls