summaryrefslogtreecommitdiff
path: root/src/pages.gen.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r--src/pages.gen.ts3
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>);