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

10 lines (9 loc) 330 B
import { Queue } from '../../utils/queue'; import AnalyticsEvent from '../AnalyticsEvent'; export declare class LocalStorageEvents extends Queue<AnalyticsEvent> { private localStorage; constructor(); enqueue(event: AnalyticsEvent): void; dequeue(): AnalyticsEvent | undefined; private initLocalStorageQueue; }