@epicgames-ps/lib-pixelstreamingfrontend-ue5.4
Version:
Frontend library for Unreal Engine 5.4 Pixel Streaming
16 lines (14 loc) • 350 B
text/typescript
// Copyright Epic Games, Inc. All Rights Reserved.
/**
* ICE Candidate Stat collected from the RTC Stats Report
*/
export class CandidateStat {
address: string;
candidateType: string;
id: string;
label: string;
port: number;
protocol: 'tcp' | 'udp';
relayProtocol: 'tcp' | 'udp' | 'tls';
transportId: string;
}