@threlte/extras
Version:
Utilities, abstractions and plugins for your Threlte apps
7 lines (6 loc) • 333 B
TypeScript
import type { Props } from '@threlte/core';
import type { OrthographicCamera, PerspectiveCamera } from 'three';
import type { TrackballControls } from 'three/examples/jsm/controls/TrackballControls.js';
export interface TrackballControlsProps extends Props<TrackballControls> {
camera?: PerspectiveCamera | OrthographicCamera;
}