vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
13 lines (12 loc) • 580 B
TypeScript
export { log404 };
export { getRoutesInfo };
import type { PageRoutes } from '../../../../shared-server-client/route/index.js';
import type { GlobalContextServerInternal } from '../../globalContext.js';
import type { PageContextCreatedServer } from '../createPageContextServer.js';
import '../../../assertEnvServer.js';
declare function log404(pageContext: PageContextCreatedServer & {
urlPathname: string;
errorWhileRendering: null | Error;
_globalContext: GlobalContextServerInternal;
}): void;
declare function getRoutesInfo(pageRoutes: PageRoutes): string | null;