@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
11 lines (10 loc) • 381 B
TypeScript
import { HMSPeer } from './hms-peer';
import { HMSLocalAudioTrack, HMSLocalTrack, HMSLocalVideoTrack } from '../../media/tracks';
import { HMSRole } from '../role';
export interface HMSLocalPeer extends HMSPeer {
asRole?: HMSRole;
audioTrack?: HMSLocalAudioTrack;
videoTrack?: HMSLocalVideoTrack;
auxiliaryTracks: HMSLocalTrack[];
isInPreview: () => boolean;
}