RocketChat/Rocket.Chat

View on GitHub
packages/core-typings/src/voip/IQueueInfo.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * This interface represents the agent's view of the queue
 * @remarks
 */

export interface IQueueInfo {
    queueName: string;
    callsInQueue: number;
}