diff options
author | polwex <polwex@sortug.com> | 2025-05-15 10:13:00 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-05-15 10:13:00 +0700 |
commit | d56594d3289002566f4653d607f0837befd65109 (patch) | |
tree | f69685b458419566a78727ce6a8cecd0cdc269a5 /src/pages.gen.ts | |
parent | 04509d9207603d9055cf022051763ec05c9214d6 (diff) |
wtf man
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 6f44dd4..94e0a4a 100644 --- a/src/pages.gen.ts +++ b/src/pages.gen.ts @@ -4,6 +4,8 @@ import type { PathsForPages, GetConfigResponse } from 'waku/router'; // 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 About_getConfig } from './pages/about'; @@ -12,6 +14,7 @@ import type { getConfig as Index_getConfig } from './pages/index'; // prettier-ignore type Page = +| ({ path: '/login' } & GetConfigResponse<typeof Login_getConfig>) | ({ path: '/db' } & GetConfigResponse<typeof Db_getConfig>) | ({ path: '/about' } & GetConfigResponse<typeof About_getConfig>) | ({ path: '/' } & GetConfigResponse<typeof Index_getConfig>); |