2023-07-31 20:19:08 +00:00
|
|
|
import type { PageContextBuiltIn } from 'vite-plugin-ssr/types'
|
2023-02-17 09:21:02 +00:00
|
|
|
import type { PageProps } from '../pages/types'
|
|
|
|
import type { Component } from 'solid-js'
|
|
|
|
|
|
|
|
export type PageContext = PageContextBuiltIn & {
|
|
|
|
Page: (pageProps: PageProps) => Component
|
|
|
|
pageProps: PageProps
|
|
|
|
lng: string
|
|
|
|
// FIXME typing
|
|
|
|
cookies: any
|
|
|
|
documentProps?: {
|
|
|
|
title?: string
|
|
|
|
description?: string
|
|
|
|
}
|
|
|
|
}
|