vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
8 lines (7 loc) • 337 B
TypeScript
export { isClientSideRoutable };
import type { GlobalContextClientInternal } from './globalContext.js';
import type { PageFile } from '../../shared/getPageFiles.js';
declare function isClientSideRoutable(pageId: string, pageContext: {
_globalContext: GlobalContextClientInternal;
_pageFilesAll: PageFile[];
}): Promise<boolean>;