vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
11 lines (10 loc) • 330 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;
};