diff options
author | polwex <polwex@sortug.com> | 2025-05-29 15:54:51 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-05-29 15:54:51 +0700 |
commit | 7de09570c0d7907424c30f492207e80ff69e4061 (patch) | |
tree | 5f0971b9eeac9e1cc6506954843093b6b77ebd63 /src/pages.gen.ts | |
parent | 84c5b778039102a77b7fda2ddcab2bbf70085bdc (diff) |
very pretty
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r-- | src/pages.gen.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pages.gen.ts b/src/pages.gen.ts index fa7a6fa..6695ceb 100644 --- a/src/pages.gen.ts +++ b/src/pages.gen.ts @@ -14,6 +14,8 @@ import type { getConfig as File_Login_getConfig } from './pages/login'; // prettier-ignore import type { getConfig as File_Parse_getConfig } from './pages/parse'; // prettier-ignore +import type { getConfig as File_Logout_getConfig } from './pages/logout'; +// prettier-ignore import type { getConfig as File_Db_getConfig } from './pages/db'; // prettier-ignore import type { getConfig as File_Form_getConfig } from './pages/form'; @@ -36,6 +38,7 @@ type Page = | ({ path: '/lesson/[slug]' } & GetConfigResponse<typeof File_LessonSlug_getConfig>) | ({ path: '/login' } & GetConfigResponse<typeof File_Login_getConfig>) | ({ path: '/parse' } & GetConfigResponse<typeof File_Parse_getConfig>) +| ({ path: '/logout' } & GetConfigResponse<typeof File_Logout_getConfig>) | ({ path: '/db' } & GetConfigResponse<typeof File_Db_getConfig>) | { path: '/test/client-modal'; render: 'dynamic' } | { path: '/test/trigger-modal-button'; render: 'dynamic' } |