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

14 lines (12 loc) 380 B
import { HMSICEServer } from '../../interfaces'; export class JoinParameters { constructor( public authToken: string, public peerId: string, public peerName: string = '', public data: string = '', public endpoint: string = 'https://prod-init.100ms.live/init', public autoSubscribeVideo: boolean = false, public iceServers?: HMSICEServer[], ) {} }