spacesvr-websessions
Version:
A standardized reality for future of the 3D Web
18 lines (17 loc) • 670 B
TypeScript
import { PhysicsProps } from "../layers/Physics";
import { EnvironmentProps } from "../layers/Environment";
import { NetworkProps } from "../layers/Network";
import { PlayerProps } from "../layers/Player";
import { ReactNode } from "react";
import { ToolbeltProps } from "../layers/Toolbelt";
declare type StandardRealityProps = {
children?: ReactNode | ReactNode[];
environmentProps?: EnvironmentProps;
physicsProps?: PhysicsProps;
networkProps?: NetworkProps;
playerProps?: PlayerProps;
toolbeltProps?: ToolbeltProps;
disableGround?: boolean;
};
export declare function StandardReality(props: StandardRealityProps): JSX.Element;
export {};