commit 042b92dc4465fac2665b89c52cc5e06b81a9166a
parent d61f796d7285830f29507431f541d1457b5aebb7
Author: Sunny <kajimalu10@gmail.com>
Date: Wed, 20 Aug 2025 12:11:49 +0900
fix Type error: Module '"@/app/page"' has no exported member 'TapEntry'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/page.tsx b/src/app/page.tsx
@@ -6,7 +6,7 @@ import TimerDashboard from "@/components/TimerDashboard";
// --- ★ データ構造の定義を変更 ★ ---
// 個々のタップ記録の型
-interface TapEntry {
+export interface TapEntry {
timestamp: string;
isOshi: boolean;
}