summaryrefslogtreecommitdiff
path: root/src/pages.gen.ts
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-05-21 14:00:28 +0700
committerpolwex <polwex@sortug.com>2025-05-21 14:00:28 +0700
commite839a5f61f0faa21ca8b4bd5767f7575d5e576ee (patch)
tree53e5bcc3977b6ebef687521a7ac387a89aeb21c8 /src/pages.gen.ts
parent4f2bd597beaa778476b84c10b571db1b13524301 (diff)
the card flip animation is legit
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r--src/pages.gen.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/pages.gen.ts b/src/pages.gen.ts
index 2cb3b4a..7d23584 100644
--- a/src/pages.gen.ts
+++ b/src/pages.gen.ts
@@ -6,8 +6,14 @@ import type { PathsForPages, GetConfigResponse } from 'waku/router';
// prettier-ignore
import type { getConfig as Zoom_getConfig } from './pages/zoom';
// prettier-ignore
+import type { getConfig as LangSlug_getConfig } from './pages/lang/[slug]';
+// prettier-ignore
+import type { getConfig as LessonSlug_getConfig } from './pages/lesson/[slug]';
+// prettier-ignore
import type { getConfig as Login_getConfig } from './pages/login';
// prettier-ignore
+import type { getConfig as Parse_getConfig } from './pages/parse';
+// prettier-ignore
import type { getConfig as Db_getConfig } from './pages/db';
// prettier-ignore
import type { getConfig as Form_getConfig } from './pages/form';
@@ -16,12 +22,17 @@ import type { getConfig as Picker_getConfig } from './pages/picker';
// prettier-ignore
import type { getConfig as About_getConfig } from './pages/about';
// prettier-ignore
+import type { getConfig as LogintestIndex_getConfig } from './pages/logintest/index';
+// prettier-ignore
import type { getConfig as Index_getConfig } from './pages/index';
// prettier-ignore
type Page =
| ({ path: '/zoom' } & GetConfigResponse<typeof Zoom_getConfig>)
+| ({ path: '/lang/[slug]' } & GetConfigResponse<typeof LangSlug_getConfig>)
+| ({ path: '/lesson/[slug]' } & GetConfigResponse<typeof LessonSlug_getConfig>)
| ({ path: '/login' } & GetConfigResponse<typeof Login_getConfig>)
+| ({ path: '/parse' } & GetConfigResponse<typeof Parse_getConfig>)
| ({ path: '/db' } & GetConfigResponse<typeof Db_getConfig>)
| { path: '/test/client-modal'; render: 'dynamic' }
| { path: '/test/trigger-modal-button'; render: 'dynamic' }
@@ -29,6 +40,9 @@ type Page =
| ({ path: '/form' } & GetConfigResponse<typeof Form_getConfig>)
| ({ path: '/picker' } & GetConfigResponse<typeof Picker_getConfig>)
| ({ path: '/about' } & GetConfigResponse<typeof About_getConfig>)
+| { path: '/logintest/Form'; render: 'dynamic' }
+| ({ path: '/logintest' } & GetConfigResponse<typeof LogintestIndex_getConfig>)
+| { path: '/logintest/ServerForm'; render: 'dynamic' }
| ({ path: '/' } & GetConfigResponse<typeof Index_getConfig>);
// prettier-ignore