Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+15
View File
@@ -0,0 +1,15 @@
import { ReactThreeFiber, ThreeElement } from '@react-three/fiber';
import * as THREE from 'three';
import { TrackballControls as TrackballControlsImpl } from 'three-stdlib';
import { ForwardRefComponent, Overwrite } from '../helpers/ts-utils';
export type TrackballControlsProps = Omit<Overwrite<ThreeElement<typeof TrackballControlsImpl>, {
target?: ReactThreeFiber.Vector3;
camera?: THREE.Camera;
domElement?: HTMLElement;
regress?: boolean;
makeDefault?: boolean;
onChange?: (e?: THREE.Event) => void;
onStart?: (e?: THREE.Event) => void;
onEnd?: (e?: THREE.Event) => void;
}>, 'ref' | 'args'>;
export declare const TrackballControls: ForwardRefComponent<TrackballControlsProps, TrackballControlsImpl>;