UNPKG

@threlte/xr

Version:

Tools to more easily create VR and AR experiences with Threlte

9 lines (8 loc) 274 B
import type { Snippet } from 'svelte'; interface Props { handedness: 'left' | 'right'; children?: Snippet; } declare const PointerCursor: import("svelte").Component<Props, {}, "">; type PointerCursor = ReturnType<typeof PointerCursor>; export default PointerCursor;