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

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

@@ -0,0 +1,24 @@
export type Glyph = {
_cachedOutline: string[];
ha: number;
o: string;
};
export type FontData = {
boundingBox: {
yMax: number;
yMin: number;
};
familyName: string;
glyphs: {
[k: string]: Glyph;
};
resolution: number;
underlineThickness: number;
};
type FontInput = string | FontData;
export declare function useFont(font: FontInput): import("three-stdlib").Font;
export declare namespace useFont {
var preload: (font: FontInput) => undefined;
var clear: (font: FontInput) => void;
}
export {};