@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
20 lines (19 loc) • 846 B
TypeScript
import * as sdkTypes from '../../internal';
import { HMSNotificationTypes } from '../../schema/notification';
declare type PeerNotificationMap = {
[key in sdkTypes.HMSPeerUpdate]?: HMSNotificationTypes;
};
export declare const PEER_NOTIFICATION_TYPES: PeerNotificationMap;
declare type TrackNotificationMap = {
[key in sdkTypes.HMSTrackUpdate]: HMSNotificationTypes;
};
export declare const TRACK_NOTIFICATION_TYPES: TrackNotificationMap;
declare type PollNotificationMap = {
[key in sdkTypes.HMSPollsUpdate]: HMSNotificationTypes;
};
export declare const POLL_NOTIFICATION_TYPES: PollNotificationMap;
declare type TranscriptionNotificationMap = {
[key in sdkTypes.HMSRoomUpdate.TRANSCRIPTION_STATE_UPDATED]: HMSNotificationTypes;
};
export declare const TRANSCRIPTION_NOTIFICATION_TYPES: TranscriptionNotificationMap;
export {};