vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
9 lines (8 loc) • 400 B
TypeScript
export { isClientSideRoutable };
import type { GlobalContextClientInternal } from './getGlobalContextClientInternal.js';
import type { PageFile } from '../../shared-server-client/getPageFiles.js';
import '../assertEnvClient.js';
declare function isClientSideRoutable(pageId: string, pageContext: {
_globalContext: GlobalContextClientInternal;
_pageFilesAll: PageFile[];
}): Promise<boolean>;