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) 345 B
import { HMSTrack } from '../tracks'; export declare class HMSMediaStream { readonly nativeStream: MediaStream; id: string; readonly tracks: HMSTrack[]; constructor(nativeStream: MediaStream); /** * This is only used when onDemandTracks flag is enabled in Init * @param id */ updateId(id: string): void; }