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 94e0a4a..9e2fcfb 100644
--- a/src/pages.gen.ts
+++ b/src/pages.gen.ts
@@ -8,6 +8,8 @@ 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 About_getConfig } from './pages/about';
// prettier-ignore
import type { getConfig as Index_getConfig } from './pages/index';
@@ -16,6 +18,7 @@ import type { getConfig as Index_getConfig } from './pages/index';
type Page =
| ({ path: '/login' } & GetConfigResponse<typeof Login_getConfig>)
| ({ path: '/db' } & GetConfigResponse<typeof Db_getConfig>)
+| ({ path: '/form' } & GetConfigResponse<typeof Form_getConfig>)
| ({ path: '/about' } & GetConfigResponse<typeof About_getConfig>)
| ({ path: '/' } & GetConfigResponse<typeof Index_getConfig>);