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

19
node_modules/@react-three/drei/core/TrailTexture.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import * as React from 'react';
import { Texture } from 'three';
type TrailConfig = {
size?: number;
maxAge?: number;
radius?: number;
intensity?: number;
interpolate?: number;
smoothing?: number;
minForce?: number;
blend?: CanvasRenderingContext2D['globalCompositeOperation'];
ease?: (t: number) => number;
};
export declare function useTrailTexture(config?: Partial<TrailConfig>): [Texture, (ThreeEvent: any) => void];
export type TrailTextureProps = {
children?: (texture: ReturnType<typeof useTrailTexture>) => React.ReactNode;
} & TrailConfig;
export declare const TrailTexture: ({ children, ...config }: TrailTextureProps) => React.JSX.Element;
export {};