summaryrefslogtreecommitdiff
path: root/src/pages.gen.ts
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-05-29 14:52:38 +0700
committerpolwex <polwex@sortug.com>2025-05-29 14:52:38 +0700
commit490388360a0852bcf8ee054e96fa90e166df5792 (patch)
tree3940097c5505ff1bb09875dddb7ee0e4881beb77 /src/pages.gen.ts
parentf243847216279cbd43879de8b5ef6dcceb3a2f1d (diff)
fucker actually solved the cookies, love ya man
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r--src/pages.gen.ts50
1 files changed, 26 insertions, 24 deletions
diff --git a/src/pages.gen.ts b/src/pages.gen.ts
index b4a4bd7..d8c992f 100644
--- a/src/pages.gen.ts
+++ b/src/pages.gen.ts
@@ -4,49 +4,51 @@
import type { PathsForPages, GetConfigResponse } from 'waku/router';
// prettier-ignore
-import type { getConfig as Zoom_getConfig } from './pages/zoom';
+import type { getConfig as File_Zoom_getConfig } from './pages/zoom';
// prettier-ignore
-import type { getConfig as LangSlug_getConfig } from './pages/lang/[slug]';
+import type { getConfig as File_LangSlug_getConfig } from './pages/lang/[slug]';
// prettier-ignore
-import type { getConfig as LessonSlug_getConfig } from './pages/lesson/[slug]';
+import type { getConfig as File_LessonSlug_getConfig } from './pages/lesson/[slug]';
// prettier-ignore
-import type { getConfig as Login_getConfig } from './pages/login';
+import type { getConfig as File_Login_getConfig } from './pages/login';
// prettier-ignore
-import type { getConfig as Parse_getConfig } from './pages/parse';
+import type { getConfig as File_Parse_getConfig } from './pages/parse';
// prettier-ignore
-import type { getConfig as Db_getConfig } from './pages/db';
+import type { getConfig as File_Db_getConfig } from './pages/db';
// prettier-ignore
-import type { getConfig as Form_getConfig } from './pages/form';
+import type { getConfig as File_Form_getConfig } from './pages/form';
// prettier-ignore
-import type { getConfig as Tones_getConfig } from './pages/tones';
+import type { getConfig as File_Tones_getConfig } from './pages/tones';
// prettier-ignore
-import type { getConfig as Picker_getConfig } from './pages/picker';
+import type { getConfig as File_Picker_getConfig } from './pages/picker';
// prettier-ignore
-import type { getConfig as About_getConfig } from './pages/about';
+import type { getConfig as File_About_getConfig } from './pages/about';
// prettier-ignore
-import type { getConfig as LogintestIndex_getConfig } from './pages/logintest/index';
+import type { getConfig as File_LogintestIndex_getConfig } from './pages/logintest/index';
// prettier-ignore
-import type { getConfig as Index_getConfig } from './pages/index';
+import type { getConfig as File_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: '/zoom' } & GetConfigResponse<typeof File_Zoom_getConfig>)
+| ({ path: '/lang/[slug]' } & GetConfigResponse<typeof File_LangSlug_getConfig>)
+| ({ path: '/lesson/[slug]' } & GetConfigResponse<typeof File_LessonSlug_getConfig>)
+| ({ path: '/login' } & GetConfigResponse<typeof File_Login_getConfig>)
+| ({ path: '/parse' } & GetConfigResponse<typeof File_Parse_getConfig>)
+| ({ path: '/db' } & GetConfigResponse<typeof File_Db_getConfig>)
+| { path: '/study'; render: 'dynamic' }
| { path: '/test/client-modal'; render: 'dynamic' }
| { path: '/test/trigger-modal-button'; render: 'dynamic' }
| { path: '/test'; render: 'dynamic' }
-| ({ path: '/form' } & GetConfigResponse<typeof Form_getConfig>)
-| ({ path: '/tones' } & GetConfigResponse<typeof Tones_getConfig>)
-| ({ path: '/picker' } & GetConfigResponse<typeof Picker_getConfig>)
-| ({ path: '/about' } & GetConfigResponse<typeof About_getConfig>)
+| ({ path: '/form' } & GetConfigResponse<typeof File_Form_getConfig>)
+| ({ path: '/tones' } & GetConfigResponse<typeof File_Tones_getConfig>)
+| ({ path: '/picker' } & GetConfigResponse<typeof File_Picker_getConfig>)
+| { path: '/lessons'; render: 'dynamic' }
+| ({ path: '/about' } & GetConfigResponse<typeof File_About_getConfig>)
| { path: '/logintest/Form'; render: 'dynamic' }
-| ({ path: '/logintest' } & GetConfigResponse<typeof LogintestIndex_getConfig>)
+| ({ path: '/logintest' } & GetConfigResponse<typeof File_LogintestIndex_getConfig>)
| { path: '/logintest/ServerForm'; render: 'dynamic' }
-| ({ path: '/' } & GetConfigResponse<typeof Index_getConfig>);
+| ({ path: '/' } & GetConfigResponse<typeof File_Index_getConfig>);
// prettier-ignore
declare module 'waku/router' {