diff options
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 2d0d34e..2b4890f 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 File_StudyThai_getConfig } from './pages/study/thai'; +// prettier-ignore import type { getConfig as File_Zoom_getConfig } from './pages/zoom'; // prettier-ignore import type { getConfig as File_LangSlug_getConfig } from './pages/lang/[slug]'; @@ -34,6 +36,7 @@ import type { getConfig as File_Index_getConfig } from './pages/index'; // prettier-ignore type Page = +| ({ path: '/study/thai' } & GetConfigResponse<typeof File_StudyThai_getConfig>) | { path: '/study/[slug]'; render: 'dynamic' } | ({ path: '/zoom' } & GetConfigResponse<typeof File_Zoom_getConfig>) | ({ path: '/lang/[slug]' } & GetConfigResponse<typeof File_LangSlug_getConfig>) |