@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) • 380 B
TypeScript
import { HMSUpdateListener } from '../../interfaces';
import { Store } from '../../sdk/store';
export declare class SessionMetadataManager {
private store;
listener?: HMSUpdateListener | undefined;
constructor(store: Store, listener?: HMSUpdateListener | undefined);
handleNotification(method: string, notification: any): void;
private handleMetadataChange;
}