@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
10 lines (9 loc) • 444 B
TypeScript
import { HMSConnectionQualityListener } from '../../interfaces';
import { Store } from '../../sdk/store';
import { ConnectionQualityList } from '../HMSNotifications';
export declare class ConnectionQualityManager {
private store;
listener?: HMSConnectionQualityListener | undefined;
constructor(store: Store, listener?: HMSConnectionQualityListener | undefined);
handleQualityUpdate(qualityList: ConnectionQualityList): void;
}