Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

17
node_modules/@react-three/drei/web/DragControls.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import * as React from 'react';
import * as THREE from 'three';
import { DragConfig } from '@use-gesture/react';
import { ForwardRefComponent } from '../helpers/ts-utils';
export type DragControlsProps = {
autoTransform?: boolean;
matrix?: THREE.Matrix4;
axisLock?: 'x' | 'y' | 'z';
dragLimits?: [[number, number] | undefined, [number, number] | undefined, [number, number] | undefined];
onHover?: (hovering: boolean) => void;
onDragStart?: (origin: THREE.Vector3) => void;
onDrag?: (localMatrix: THREE.Matrix4, deltaLocalMatrix: THREE.Matrix4, worldMatrix: THREE.Matrix4, deltaWorldMatrix: THREE.Matrix4) => void;
onDragEnd?: () => void;
children: React.ReactNode;
dragConfig?: DragConfig;
};
export declare const DragControls: ForwardRefComponent<DragControlsProps, THREE.Group>;