From fd86dc15734f3b7126d88f0130897c597100e30a Mon Sep 17 00:00:00 2001 From: polwex Date: Thu, 15 May 2025 20:32:25 +0700 Subject: m --- src/pages.gen.ts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/pages.gen.ts') 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 @@ -3,6 +3,8 @@ // prettier-ignore 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 @@ -10,15 +12,22 @@ 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) | ({ path: '/login' } & GetConfigResponse) | ({ path: '/db' } & GetConfigResponse) +| { path: '/test/client-modal'; render: 'dynamic' } +| { path: '/test/trigger-modal-button'; render: 'dynamic' } +| { path: '/test'; render: 'dynamic' } | ({ path: '/form' } & GetConfigResponse) +| ({ path: '/picker' } & GetConfigResponse) | ({ path: '/about' } & GetConfigResponse) | ({ path: '/' } & GetConfigResponse); -- cgit v1.2.3