(event: string, callback: (arg: any) => void)
| 36 | } |
| 37 | |
| 38 | on(event: string, callback: (arg: any) => void): void { |
| 39 | this.customEvents.on(event, callback) |
| 40 | } |
| 41 | |
| 42 | off(event: string, callback: (arg: any) => void): void { |
| 43 | this.customEvents.off(event, callback) |
no outgoing calls