UNPKG

bot-handoff

Version:

Bot hand off module for the Microsoft Bot Framework. It allows you to transfer a customer from talking to a bot to talking to a human.

10 lines (7 loc) 257 B
export class AgentAlreadyInConversationError extends Error { constructor(msg: string) { super(msg); this.name = 'AgentAlreadyInConversationError'; Object.setPrototypeOf(this, AgentAlreadyInConversationError.prototype); } }