* 移除事件监听器
(event: string, listener: (...args: any[]) => void)
| 62 | * 移除事件监听器 |
| 63 | */ |
| 64 | off(event: string, listener: (...args: any[]) => void): this { |
| 65 | this.eventEmitter.off(event, listener); |
| 66 | return this; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * 发射事件 |
no outgoing calls
no test coverage detected