* Alias for kill. * @deprecated
(signal?: NodeJS.Signals)
| 425 | * @deprecated |
| 426 | */ |
| 427 | terminate(signal?: NodeJS.Signals) { |
| 428 | // todo: remove this next breaking release |
| 429 | return this.kill(signal) |
| 430 | } |
| 431 | }; |
| 432 | |
| 433 | // This interface is merged in with the above class definition |