@tencentcloud/call-uikit-vue2
Version:
An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.
14 lines (13 loc) • 473 B
TypeScript
import { CallStatus, CallRole, CallMediaType } from '../../TUICallService';
export declare type TCallInfoContextValue = {
callStatus?: CallStatus;
callRole?: CallRole;
callType?: CallMediaType;
isGroupCall?: boolean;
isEarPhone?: boolean;
focusElement?: string | null;
enableVirtualBackground?: boolean;
isShowEnableVirtualBackground?: boolean;
isMuteSpeaker?: boolean;
};
export declare const CallInfoContextKey = "CallInfoContextKey";