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.
19 lines (18 loc) • 876 B
TypeScript
import { PixelStreamingApplicationStyle } from 'metaeditor4-ui';
export declare const PixelStreamingApplicationStyles: PixelStreamingApplicationStyle;
import ContextProvider from './context';
import useStreamActions from './hooks.stream/useStreamActions';
import useStreamEvents from './hooks.stream/useStreamEvents';
import useEventListener from './hooks.stream/useEventListener';
import Player from './snippets/Player';
declare const Context: {
stream: () => import("./context/useStreamContext/actions").ActionProps;
};
declare const Hooks: {
actions: typeof useStreamActions;
events: typeof useStreamEvents;
listener: typeof useEventListener;
};
export { ContextProvider as MetaProvider, Player as MetaPlayer, Context, Hooks, };
import type { PlayerConfigProps } from './context/useStreamContext/types';
export type { PlayerConfigProps };