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

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

@@ -0,0 +1,14 @@
import * as React from 'react';
import { Texture } from 'three';
export declare function useKTX2<Url extends string[] | string | Record<string, string>>(input: Url, basisPath?: string): Url extends any[] ? Texture[] : Url extends object ? {
[key in keyof Url]: Texture;
} : Texture;
export declare namespace useKTX2 {
var preload: (url: string extends any[] ? string[] : string, basisPath?: string) => void;
var clear: (input: string | string[]) => void;
}
export declare const Ktx2: ({ children, input, basisPath, }: {
children?: (texture: ReturnType<typeof useKTX2>) => React.ReactNode;
input: Parameters<typeof useKTX2>[0];
basisPath?: Parameters<typeof useKTX2>[1];
}) => React.JSX.Element;