UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

18 lines (17 loc) • 537 B
import type { PageContextBuiltInClientWithServerRouting } from '../../types/PageContext.js'; import '../assertEnvClient.js'; /** @deprecated * Replace: * ``` * import type { PageContextBuiltInClient } from 'vite-plugin/client' * ``` * With: * ``` * import type { * PageContextBuiltInClientWithServerRouting as * PageContextBuiltInClient * } from 'vike/types' * ``` */ type PageContextBuiltInClient<Page = any> = PageContextBuiltInClientWithServerRouting<Page>; export type { PageContextBuiltInClient };