@epicgames-ps/lib-pixelstreamingfrontend-ue5.3
Version:
Frontend library for Unreal Engine 5.3 Pixel Streaming
16 lines (15 loc) • 373 B
TypeScript
/**
* ICE Candidate Pair Stats collected from the RTC Stats Report
*/
export declare class CandidatePairStats {
bytesReceived: number;
bytesSent: number;
localCandidateId: string;
remoteCandidateId: string;
nominated: boolean;
readable: boolean;
writable: boolean;
selected: boolean;
state: string;
currentRoundTripTime: number;
}