UNPKG

spacesvr-websessions

Version:

A standardized reality for future of the 3D Web

10 lines (9 loc) 294 B
import { GroupProps } from "@react-three/fiber"; import { Raycaster } from "three"; declare type SwitchProps = { value?: boolean; onChange?: (value: boolean) => void; raycaster?: Raycaster; } & GroupProps; export declare function Switch(props: SwitchProps): JSX.Element; export {};