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
+14
View File
@@ -0,0 +1,14 @@
import { ReactThreeFiber, ThreeElement } from '@react-three/fiber';
import * as THREE from 'three';
import { MapControls as MapControlsImpl } from 'three-stdlib';
import { ForwardRefComponent, Overwrite } from '../helpers/ts-utils';
export type MapControlsProps = Omit<Overwrite<ThreeElement<typeof MapControlsImpl>, {
target?: ReactThreeFiber.Vector3;
camera?: THREE.Camera;
makeDefault?: boolean;
onChange?: (e?: THREE.Event) => void;
onStart?: (e?: THREE.Event) => void;
onEnd?: (e?: THREE.Event) => void;
domElement?: HTMLElement;
}>, 'ref' | 'args'>;
export declare const MapControls: ForwardRefComponent<MapControlsProps, MapControlsImpl>;