(event: WechatyEventName, listener: (...args: any[]) => any)
| 333 | } |
| 334 | |
| 335 | public on (event: WechatyEventName, listener: (...args: any[]) => any): this { |
| 336 | log.verbose('Wechaty', 'on(%s, listener) registering... listenerCount: %s', |
| 337 | event, |
| 338 | this.listenerCount(event), |
| 339 | ) |
| 340 | |
| 341 | return super.on(event, listener) |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * @param {WechatyPlugin[]} plugins - The plugins you want to use |
no outgoing calls