vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
22 lines (21 loc) • 775 B
TypeScript
import '../assertEnvClient.js';
export { navigate, reload } from './navigate.js';
export { prefetch } from './prefetch.js';
export { getPageContextClient } from './renderPageClient.js';
export { PROJECT_VERSION as version } from '../../utils/PROJECT_VERSION.js';
import type { PageContextBuiltInClientWithClientRouting } from '../../types/PageContext.js';
/** @deprecated
* Replace:
* ```
* import type { PageContextBuiltInClient } from 'vite-plugin/client/router'
* ```
* With:
* ```
* import type {
* PageContextBuiltInClientWithClientRouting as
* PageContextBuiltInClient
* } from 'vike/types'
* ```
*/
type PageContextBuiltInClient<Page = any> = PageContextBuiltInClientWithClientRouting<Page>;
export type { PageContextBuiltInClient };