UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

17 lines 568 B
import { Call, CallAgent } from '@azure/communication-calling'; import { TeamsCall as TeamsCallBeta, CallCommon as CallCommonBeta, CallAgentCommon as CallAgentCommonBeta } from '@azure/communication-calling'; /** * @public * The common interface for all types of Calls */ export type CallCommon = Call | CallCommonBeta; /** * @public * The common interface for all types of CallAgents */ export type CallAgentCommon = CallAgent | CallAgentCommonBeta; /** * @beta */ export type TeamsCall = never | TeamsCallBeta; //# sourceMappingURL=BetaToStableTypes.d.ts.map