vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
10 lines (9 loc) • 416 B
TypeScript
export { setPageContextCurrent };
export { getPageContextCurrent };
import type { PageContextConfig } from '../../shared-server-client/getPageFiles.js';
import '../assertEnvClient.js';
type PageContextCurrent = PageContextConfig & {
urlPathname: string;
};
declare function getPageContextCurrent(): null | PageContextCurrent;
declare function setPageContextCurrent(pageContextCurrent: PageContextCurrent): void;