/** * @export * @class SrtStatisticRecv */ export declare class SrtStatisticRecv { /** * @type {number} * @memberof SrtStatisticRecv */ bytes?: number; /** * @type {number} * @memberof SrtStatisticRecv */ bytesDropped?: number; /** * @type {number} * @memberof SrtStatisticRecv */ bytesLost?: number; /** * @type {number} * @memberof SrtStatisticRecv */ mbitRate?: number; /** * @type {number} * @memberof SrtStatisticRecv */ packets?: number; /** * @type {number} * @memberof SrtStatisticRecv */ packetsBelated?: number; /** * @type {number} * @memberof SrtStatisticRecv */ packetsDropped?: number; /** * @type {number} * @memberof SrtStatisticRecv */ packetsLost?: number; /** * @type {number} * @memberof SrtStatisticRecv */ packetsRetransmitted?: number; constructor(obj?: Partial); } export default SrtStatisticRecv;