@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
16 lines (15 loc) • 531 B
TypeScript
import { EventBus } from '../events/EventBus';
import { HMSUpdateListener } from '../interfaces';
import { NetworkHealth } from '../signal/init/models';
export declare class NetworkTestManager {
private eventBus;
private listener?;
private readonly TAG;
private controller;
private score?;
constructor(eventBus: EventBus, listener?: HMSUpdateListener | undefined);
start: (networkHealth: NetworkHealth) => Promise<void>;
stop: () => void;
private sendScore;
private updateScoreToListener;
}