vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
8 lines (7 loc) • 341 B
TypeScript
export { analyzeClientSide };
import type { PageConfigRuntime } from '../../types/PageConfig.js';
import type { PageFile } from './getPageFileObject.js';
declare function analyzeClientSide(pageConfig: PageConfigRuntime | null, pageFilesAll: PageFile[], pageId: string): {
isClientRuntimeLoaded: boolean;
isClientRouting: boolean;
};