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

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

@@ -0,0 +1,13 @@
import * as React from 'react';
import type { Color } from '@react-three/fiber';
export type ExampleProps = {
font: string;
color?: Color;
debug?: boolean;
bevelSize?: number;
} & React.ComponentProps<'group'>;
export type ExampleApi = {
incr: (x?: number) => void;
decr: (x?: number) => void;
};
export declare const Example: React.ForwardRefExoticComponent<Omit<ExampleProps, "ref"> & React.RefAttributes<ExampleApi>>;