resolve three component type exports

This commit is contained in:
Tom Boullay
2026-04-30 15:06:26 +02:00
parent a14f776e5d
commit 5f018e6de7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { useGLTF } from "@react-three/drei"; import { useGLTF } from "@react-three/drei";
import type { Vector3Tuple } from "@/types/3d"; import type { Vector3Tuple } from "@/types/three";
export interface SimpleModelConfig { export interface SimpleModelConfig {
modelPath: string; modelPath: string;
+1 -1
View File
@@ -1,4 +1,4 @@
export { AnimatedModel, useAnimatedModel } from "./AnimatedModel"; export { AnimatedModel } from "./AnimatedModel";
export type { AnimatedModelConfig } from "./AnimatedModel"; export type { AnimatedModelConfig } from "./AnimatedModel";
export { SimpleModel } from "./SimpleModel"; export { SimpleModel } from "./SimpleModel";