metaeditor
Version:
The Pixel Streaming library for ReactJS facilitates the integration of Unreal Engine v.5 into a web browser. It enables the transmission of commands and receipt of callbacks from the stream server once Unreal Engine is launched.
12 lines (11 loc) • 397 B
TypeScript
import { WebrtcStatus, StreamStatus } from './types';
import { PlayerConfigProps } from './types';
export interface StateProps {
playerConfig: PlayerConfigProps | null;
webrtcStatus: WebrtcStatus;
webrtcMessage: string | boolean;
streamStatus: StreamStatus;
streamMessage: string | boolean;
freezeFrame: boolean;
}
export declare const initialState: StateProps;