Interface IPeerConnectionStatsReportOutbound

The peer connection outbound stats report interface.

interface IPeerConnectionStatsReportOutbound {
    bytesSent: number;
    kind: "audio" | "video";
    packetsSent: number;
    timestamp: number;
    type: "outbound-rtp";
}

Properties

bytesSent: number

The bytes sent.

kind: "audio" | "video"

The kind of the report.

packetsSent: number

The packets sent.

timestamp: number

The timestamp.

type: "outbound-rtp"

The type of the report.

Generated using TypeDoc