diff options
author | polwex <polwex@sortug.com> | 2025-05-29 16:25:31 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-05-29 16:25:31 +0700 |
commit | a03c92dc82ad527d7da6bbaa3c43000e2e5f0e69 (patch) | |
tree | 9a47cae250d043d31f751c1383bdcbe09d4bc9d8 /src/pages.gen.ts | |
parent | 7de09570c0d7907424c30f492207e80ff69e4061 (diff) |
better better
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r-- | src/pages.gen.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pages.gen.ts b/src/pages.gen.ts index 6695ceb..2d0d34e 100644 --- a/src/pages.gen.ts +++ b/src/pages.gen.ts @@ -18,6 +18,8 @@ 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_Study_getConfig } from './pages/study'; +// prettier-ignore import type { getConfig as File_Form_getConfig } from './pages/form'; // prettier-ignore import type { getConfig as File_Tones_getConfig } from './pages/tones'; @@ -40,6 +42,7 @@ type Page = | ({ path: '/parse' } & GetConfigResponse<typeof File_Parse_getConfig>) | ({ path: '/logout' } & GetConfigResponse<typeof File_Logout_getConfig>) | ({ path: '/db' } & GetConfigResponse<typeof File_Db_getConfig>) +| ({ path: '/study' } & GetConfigResponse<typeof File_Study_getConfig>) | { path: '/test/client-modal'; render: 'dynamic' } | { path: '/test/trigger-modal-button'; render: 'dynamic' } | { path: '/test'; render: 'dynamic' } @@ -48,9 +51,7 @@ type Page = | ({ 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 File_LogintestIndex_getConfig>) -| { path: '/logintest/ServerForm'; render: 'dynamic' } | ({ path: '/' } & GetConfigResponse<typeof File_Index_getConfig>); // prettier-ignore |