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

8 lines (7 loc) 148 B
export declare class RunningAverage { private total; private count; add(item: number): void; getAvg(): number; reset(): void; }