(event: 'started', handler: Callback<void>)
| 34 | |
| 35 | interface ProcessEvents { |
| 36 | on(event: 'started', handler: Callback<void>): Unsubscribe; |
| 37 | on(event: 'exited', handler: Callback<void>): Unsubscribe; |
| 38 | on(event: string, handler: Callback<any>): Unsubscribe; |
| 39 | once(event: 'started', handler: Callback<void>): Unsubscribe; |
no outgoing calls
no test coverage detected