This commit is contained in:
freedakgmail
2025-11-23 14:58:51 +08:00
parent d797f1abb9
commit 8b32cda811
132 changed files with 276374 additions and 1009 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
// This file is generated automatically by Next.js
// Do not edit this file manually
type AppRoutes = "/" | "/auth/register" | "/auth/signin" | "/members" | "/members/[id]" | "/members/new" | "/relationship-test" | "/settings" | "/timeline" | "/tree" | "/trees/new"
type AppRoutes = "/" | "/auth/register" | "/auth/signin" | "/members" | "/members/[id]" | "/members/new" | "/relationship" | "/settings" | "/timeline" | "/tree" | "/trees/new"
type AppRouteHandlerRoutes = "/api/auth/[...nextauth]" | "/api/auth/register" | "/api/trees" | "/api/trees/[treeId]" | "/api/trees/[treeId]/activity-logs" | "/api/trees/[treeId]/collaborators" | "/api/trees/[treeId]/import" | "/api/trees/[treeId]/invite" | "/api/trees/[treeId]/members" | "/api/trees/[treeId]/members/[memberId]" | "/api/trees/[treeId]/relationship" | "/api/user/activity-logs" | "/api/user/change-password" | "/api/user/profile"
type PageRoutes = never
type LayoutRoutes = "/"
@@ -31,7 +31,7 @@ interface ParamMap {
"/members": {}
"/members/[id]": { "id": string; }
"/members/new": {}
"/relationship-test": {}
"/relationship": {}
"/settings": {}
"/timeline": {}
"/tree": {}
+3 -3
View File
@@ -101,10 +101,10 @@ type RouteHandlerConfig<Route extends AppRouteHandlerRoutes = AppRouteHandlerRou
type __Unused = __Check
}
// Validate ../../../app/relationship-test/page.tsx
// Validate ../../../app/relationship/page.tsx
{
type __IsExpected<Specific extends AppPageConfig<"/relationship-test">> = Specific
const handler = {} as typeof import("../../../app/relationship-test/page.js")
type __IsExpected<Specific extends AppPageConfig<"/relationship">> = Specific
const handler = {} as typeof import("../../../app/relationship/page.js")
type __Check = __IsExpected<typeof handler>
// @ts-ignore
type __Unused = __Check