| 20 | }; |
| 21 | |
| 22 | export interface IRoutingMethod { |
| 23 | getNextAgent(departmentId?: string, ignoreAgentId?: string): Promise<SelectedAgent | null | undefined>; |
| 24 | config?: RoutingMethodConfig; |
| 25 | } |
| 26 | |
| 27 | export type TransferData = { |
| 28 | userId?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected