UNPKG

@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

12 lines (11 loc) 469 B
import { HMSUpdateListener } from '../../interfaces'; import { Store } from '../../sdk/store'; import HMSTransport from '../../transport'; export declare class WhiteboardManager { private store; private transport; listener?: HMSUpdateListener | undefined; constructor(store: Store, transport: HMSTransport, listener?: HMSUpdateListener | undefined); handleNotification(method: string, notification: any): void; private handleWhiteboardUpdate; }