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 { ArcballControls as ArcballControlsImpl } from 'three-stdlib';
import type { Event, OrthographicCamera, PerspectiveCamera } from 'three';
import { ForwardRefComponent, Overwrite } from '../helpers/ts-utils';
export type ArcballControlsProps = Omit<Overwrite<ThreeElement<typeof ArcballControlsImpl>, {
target?: ReactThreeFiber.Vector3;
camera?: OrthographicCamera | PerspectiveCamera;
domElement?: HTMLElement;
regress?: boolean;
makeDefault?: boolean;
onChange?: (e?: Event) => void;
onStart?: (e?: Event) => void;
onEnd?: (e?: Event) => void;
}>, 'ref' | 'args'>;
export declare const ArcballControls: ForwardRefComponent<ArcballControlsProps, ArcballControlsImpl>;