@epicgames-ps/lib-pixelstreamingfrontend-ue5.4
Version:
Frontend library for Unreal Engine 5.4 Pixel Streaming
23 lines (22 loc) • 555 B
TypeScript
/**
* ICE Candidate Pair Stats collected from the RTC Stats Report
*/
export declare class CandidatePairStats {
bytesReceived: number;
bytesSent: number;
currentRoundTripTime: number;
id: string;
lastPacketReceivedTimestamp: number;
lastPacketSentTimestamp: number;
localCandidateId: string;
nominated: boolean;
priority: number;
readable: boolean;
remoteCandidateId: string;
selected: boolean;
state: string;
timestamp: number;
transportId: string;
type: string;
writable: boolean;
}