UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

7 lines (6 loc) 312 B
import type { Props } from '@threlte/core'; import type { OrthographicCamera, PerspectiveCamera } from 'three'; import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'; export interface OrbitControlsProps extends Props<OrbitControls> { camera?: PerspectiveCamera | OrthographicCamera; }