diff options
author | polwex <polwex@sortug.com> | 2025-05-15 20:32:25 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-05-15 20:32:25 +0700 |
commit | fd86dc15734f3b7126d88f0130897c597100e30a (patch) | |
tree | 253890a5f0bde7bc460904ce1743581f53a23d5b /src/pages.gen.ts | |
parent | 3d4b740e5a512db8fbdd934af2fbc9585fa00f0f (diff) |
m
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r-- | src/pages.gen.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/pages.gen.ts b/src/pages.gen.ts index 9e2fcfb..2cb3b4a 100644 --- a/src/pages.gen.ts +++ b/src/pages.gen.ts @@ -4,21 +4,30 @@ import type { PathsForPages, GetConfigResponse } from 'waku/router'; // prettier-ignore +import type { getConfig as Zoom_getConfig } from './pages/zoom'; +// prettier-ignore import type { getConfig as Login_getConfig } from './pages/login'; // prettier-ignore import type { getConfig as Db_getConfig } from './pages/db'; // prettier-ignore import type { getConfig as Form_getConfig } from './pages/form'; // prettier-ignore +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 Index_getConfig } from './pages/index'; // prettier-ignore type Page = +| ({ path: '/zoom' } & GetConfigResponse<typeof Zoom_getConfig>) | ({ path: '/login' } & GetConfigResponse<typeof Login_getConfig>) | ({ path: '/db' } & GetConfigResponse<typeof Db_getConfig>) +| { path: '/test/client-modal'; render: 'dynamic' } +| { path: '/test/trigger-modal-button'; render: 'dynamic' } +| { path: '/test'; render: 'dynamic' } | ({ path: '/form' } & GetConfigResponse<typeof Form_getConfig>) +| ({ path: '/picker' } & GetConfigResponse<typeof Picker_getConfig>) | ({ path: '/about' } & GetConfigResponse<typeof About_getConfig>) | ({ path: '/' } & GetConfigResponse<typeof Index_getConfig>); |