@epicgames-ps/lib-pixelstreamingfrontend-ue5.4
Version:
Frontend library for Unreal Engine 5.4 Pixel Streaming
24 lines (23 loc) • 508 B
TypeScript
/**
* Outbound Video Stats collected from the RTC Stats Report
*/
export declare class OutBoundVideoStats {
bytesSent: number;
id: string;
localId: string;
packetsSent: number;
remoteTimestamp: number;
timestamp: number;
}
/**
* Outbound Stats collected from the RTC Stats Report
*/
export declare class OutBoundRTPStats {
kind: string;
bytesSent: number;
id: string;
localId: string;
packetsSent: number;
remoteTimestamp: number;
timestamp: number;
}