vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
9 lines (8 loc) • 388 B
TypeScript
export { isClientSideRoutable };
import type { PageFile } from '../../shared/getPageFiles.js';
import type { PageConfigRuntime } from '../../shared/page-configs/PageConfig.js';
type PageContextPageFiles = {
_pageFilesAll: PageFile[];
_pageConfigs: PageConfigRuntime[];
};
declare function isClientSideRoutable(pageId: string, pageContext: PageContextPageFiles): Promise<boolean>;