(event: 'output', output: ILogPreEntry)
| 19 | */ |
| 20 | on(event: 'output', handler: (output: ILogPreEntry) => void): this; |
| 21 | emit(event: 'output', output: ILogPreEntry): boolean; |
| 22 | /** Fires whenever the status of a process changes. */ |
| 23 | on(event: 'change', listener: (newState: ProcessState) => void): this; |
| 24 | emit(event: 'change', newState: ProcessState): boolean; |
no outgoing calls
no test coverage detected