diff options
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' } |