summaryrefslogtreecommitdiff
path: root/src/pages.gen.ts
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-05-15 15:50:51 +0700
committerpolwex <polwex@sortug.com>2025-05-15 15:50:51 +0700
commit05d13b6f166eae5c2de8fe6f6038819b1b6ba1a0 (patch)
tree795ca33a3319d11bd9daa0366d4d15f31eabf024 /src/pages.gen.ts
parent92139f14a92a535f123ad49a60498138dd2ec6cf (diff)
m
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>);