RocketChat/Rocket.Chat

View on GitHub
packages/core-typings/src/IOmnichannelAgent.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IUser } from './IUser';

export interface IOmnichannelAgent extends IUser {
    statusLivechat: OmnichannelAgentStatus;
}

export type OmnichannelAgentStatus = 'available' | 'not-available';