@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
15 lines (12 loc) • 314 B
text/typescript
import { HMSAudioMode } from '../interfaces';
export interface HMSMediaSettings {
audioInputDeviceId: string;
videoInputDeviceId: string;
audioOutputDeviceId?: string;
audioMode?: HMSAudioMode;
}
export interface DebugInfo {
websocketURL?: string;
enabledFlags?: string[];
initEndpoint?: string;
}