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

6 lines (4 loc) 224 B
import { HMSRemoteAudioTrack, HMSRemoteVideoTrack, HMSTrack } from '../../internal'; export function isRemoteTrack(track: HMSTrack) { return track instanceof HMSRemoteAudioTrack || track instanceof HMSRemoteVideoTrack; }