refactor: split hooks types and utils by domain

This commit is contained in:
Tom Boullay
2026-04-30 11:49:18 +02:00
parent 9ac5844182
commit b1187b68ae
65 changed files with 83 additions and 84 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import type { CameraMode } from "@/types/debug";
import type { CameraMode } from "@/types/debug/debug";
import { useDebugStore } from "@/hooks/debug/useDebugStore";
export function useCameraMode(): CameraMode {
+1 -1
View File
@@ -1,4 +1,4 @@
import type { SceneMode } from "@/types/debug";
import type { SceneMode } from "@/types/debug/debug";
import { useDebugStore } from "@/hooks/debug/useDebugStore";
export function useSceneMode(): SceneMode {