ngx-agora
Version:
Angular wrapper for Agora RTC client (https://www.agora.io/en/)
30 lines (29 loc) • 941 B
TypeScript
import { StreamStats } from './stream-stats.model';
/**
* The connection statistics of the local stream.
*/
export interface LocalStreamStats extends StreamStats {
/** Bytes of the sent audio. */
audioSendBytes: string;
/** Packets of the sent audio. */
audioSendPackets: string;
/**
* Number of lost packets of the sent audio.
*
* @remark
* Safari and Firefox do not support this property.
*/
audioSendPacketsLost: string;
/** Bytes of the sent video. */
videoSendBytes: string;
/** Frame rate of the sent video. */
videoSendFrameRate: string;
/** Packets of the sent video. */
videoSendPackets: string;
/** Number of lost packets of the sent video. */
videoSendPacketsLost: string;
/** Resolution height of the sent video. */
videoSendResolutionHeight: string;
/** Resolution width of the sent video. */
videoSendResolutionWidth: string;
}