UNPKG

@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

13 lines (12 loc) 279 B
import { HMSTrackSource } from '../../media/tracks'; /** * interface for track server sends/receives */ export interface Track { mute: boolean; type: 'audio' | 'video'; source: HMSTrackSource; description: string; track_id: string; stream_id: string; }