@threlte/xr
Version:
Tools to more easily create VR and AR experiences with Threlte
13 lines (12 loc) • 361 B
TypeScript
/**
* `<VRButton />` is an HTML `<button />` that can be used to init and display info about your immersive VR session.
*
* ```svelte
* <VRButton
* onerror={(event) => {}}
* onclick={(event) => {}}
* />
* ```
*/
declare const VrButton: import("svelte").Component<Omit<Record<string, any>, "mode" | "sessionInit">, {}, "">;
export default VrButton;