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
+19
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 {};