@100mslive/hms-video-store
Version:
@100mslive Core SDK which abstracts the complexities of webRTC while providing a reactive store for data management with a unidirectional data flow
9 lines (8 loc) • 327 B
TypeScript
import { HMSPeer } from './hms-peer';
import { HMSRemoteAudioTrack, HMSRemoteTrack, HMSRemoteVideoTrack } from '../../media/tracks';
export interface HMSRemotePeer extends HMSPeer {
audioTrack?: HMSRemoteAudioTrack;
videoTrack?: HMSRemoteVideoTrack;
auxiliaryTracks: HMSRemoteTrack[];
fromRoomState: boolean;
}