@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 (17 loc) • 449 B
text/typescript
import { HMSTrackExceptionTrackType } from '../media/tracks/HMSTrackExceptionTrackType';
/**
* any mid call error notification will be in this format
*/
export interface HMSException {
code: number;
action: string;
name: string;
message: string;
description: string;
isTerminal: boolean;
timestamp: Date;
nativeError?: Error;
}
export interface HMSTrackException extends HMSException {
trackType: HMSTrackExceptionTrackType;
}