vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
11 lines (10 loc) • 331 B
TypeScript
export { analyzeExports };
import type { PageFile } from '../getPageFileObject.js';
declare function analyzeExports({ pageFilesClientSide, pageFilesServerSide, pageId, }: {
pageFilesClientSide: PageFile[];
pageFilesServerSide: PageFile[];
pageId: string;
}): {
isHtmlOnly: boolean;
isClientRouting: boolean;
};