UNPKG

spacesvr-websessions

Version:

A standardized reality for future of the 3D Web

12 lines (11 loc) 349 B
import { ReactNode } from "react"; export * from "./logic/toolbelt"; export declare type ToolbeltProps = { showOnSpawn?: boolean; worldLights?: boolean; localLights?: boolean; }; declare type ToolbeltLayer = { children: ReactNode[] | ReactNode; } & ToolbeltProps; export declare function Toolbelt(props: ToolbeltLayer): JSX.Element;