@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
9 lines (8 loc) • 321 B
TypeScript
import { HMSUpdateListener } from '../../interfaces';
export declare class BroadcastManager {
listener?: HMSUpdateListener | undefined;
private readonly TAG;
constructor(listener?: HMSUpdateListener | undefined);
handleNotification(method: string, notification: any): void;
private handleBroadcast;
}