@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
12 lines (11 loc) • 448 B
TypeScript
import { HMSICEServer } from '../../interfaces';
export declare class JoinParameters {
authToken: string;
peerId: string;
peerName: string;
data: string;
endpoint: string;
autoSubscribeVideo: boolean;
iceServers?: HMSICEServer[] | undefined;
constructor(authToken: string, peerId: string, peerName?: string, data?: string, endpoint?: string, autoSubscribeVideo?: boolean, iceServers?: HMSICEServer[] | undefined);
}