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) 407 B
import AnalyticsEvent from '../analytics/AnalyticsEvent'; import { EventBus } from '../events/EventBus'; export declare class PluginUsageTracker { private eventBus; private pluginUsage; private pluginLastAddedAt; constructor(eventBus: EventBus); getPluginUsage: (name: string) => number | undefined; updatePluginUsageData: (event: AnalyticsEvent) => void; cleanup: () => void; }