infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
21 lines (20 loc) • 465 B
TypeScript
export interface SubscribedVideoEvent {
streams: StreamsMap;
description: RTCSessionDescriptionInit;
}
export interface UpdatedVideoEvent {
streams: StreamsMap | null;
description: RTCSessionDescriptionInit;
}
export interface StreamsMap {
[mid: string]: {
participant: string;
type: string;
};
}
export interface SubscribeVideoConferenceErrorEvent {
status: {
name: string;
description: string;
};
}