RocketChat/Rocket.Chat

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

Summary

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

export interface ICallDetails {
    callInfo?: ICallerInfo;
    userState: UserState;
}