(handler: (ctx: string, e: ConversationLeftEvent) => void)
| 395 | |
| 396 | onTyping(handler: (ctx: string, e: TypingEvent) => void): () => void { |
| 397 | return this.on('typing', handler); |
| 398 | } |
| 399 | |
| 400 | onTypingStop(handler: (ctx: string, e: TypingEvent) => void): () => void { |
| 401 | return this.on('typing.stop', handler); |
| 402 | } |
no test coverage detected