mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-08-06 21:28:27 +02:00
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
type RTCBasicStat = {
|
|
address: string,
|
|
bytesReceived: number,
|
|
clockRate: number,
|
|
codecId: string,
|
|
framesDecoded: number,
|
|
id: string,
|
|
kind: string,
|
|
mimeType: string,
|
|
packetsReceived: number,
|
|
profile: string,
|
|
remoteCandidateId: string,
|
|
sdpFmtpLine: string,
|
|
state: string,
|
|
timestamp: number,
|
|
totalDecodeTime: number,
|
|
type: string,
|
|
}
|