RocketChat/Rocket.Chat

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

Summary

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

export interface IAgentExtensionMap {
    _id: string;
    agentName: string;
    extension: string;
}

export interface IRoomCreationResponse {
    newRoom: boolean;
    room: IVoipRoom;
}