UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

14 lines (13 loc) 831 B
import type { ComponentInstance } from '../../types/astro.js'; import type { GetStaticPathsResult } from '../../types/public/common.js'; import type { RouteData } from '../../types/public/internal.js'; import type { Logger } from '../logger/core.js'; /** Throws error for invalid parameter in getStaticPaths() response */ export declare function validateGetStaticPathsParameter([key, value]: [string, any], route: string): void; /** Error for deprecated or malformed route components */ export declare function validateDynamicRouteModule(mod: ComponentInstance, { ssr, route, }: { ssr: boolean; route: RouteData; }): void; /** Throw error and log warnings for malformed getStaticPaths() response */ export declare function validateGetStaticPathsResult(result: GetStaticPathsResult, logger: Logger, route: RouteData): void;