mirror of https://github.com/OpenVidu/openvidu.git
16 lines
433 B
TypeScript
16 lines
433 B
TypeScript
import { Stream } from '../../OpenVidu/Stream';
|
|
export declare class WebRtcStats {
|
|
private stream;
|
|
private webRtcStatsEnabled;
|
|
private webRtcStatsIntervalId;
|
|
private statsInterval;
|
|
private stats;
|
|
constructor(stream: Stream);
|
|
isEnabled(): boolean;
|
|
initWebRtcStats(): void;
|
|
stopWebRtcStats(): void;
|
|
private sendStatsToHttpEndpoint;
|
|
private standardizeReport;
|
|
private getStatsAgnostic;
|
|
}
|