UNPKG

astro

Version:

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

36 lines (35 loc) 1.56 kB
import type { ComponentInstance } from '../../types/astro.js'; import type { GetStaticPathsItem, GetStaticPathsResultKeyed, Params } from '../../types/public/common.js'; import type { AstroConfig, RuntimeMode } from '../../types/public/config.js'; import type { RouteData } from '../../types/public/internal.js'; import type { Logger } from '../logger/core.js'; interface CallGetStaticPathsOptions { mod: ComponentInstance | undefined; route: RouteData; routeCache: RouteCache; logger: Logger; ssr: boolean; base: AstroConfig['base']; } export declare function callGetStaticPaths({ mod, route, routeCache, logger, ssr, base, }: CallGetStaticPathsOptions): Promise<GetStaticPathsResultKeyed>; interface RouteCacheEntry { staticPaths: GetStaticPathsResultKeyed; } /** * Manage the route cache, responsible for caching data related to each route, * including the result of calling getStaticPath() so that it can be reused across * responses during dev and only ever called once during build. */ export declare class RouteCache { private logger; private cache; private runtimeMode; constructor(logger: Logger, runtimeMode?: RuntimeMode); /** Clear the cache. */ clearAll(): void; set(route: RouteData, entry: RouteCacheEntry): void; get(route: RouteData): RouteCacheEntry | undefined; key(route: RouteData): string; } export declare function findPathItemByKey(staticPaths: GetStaticPathsResultKeyed, params: Params, route: RouteData, logger: Logger): GetStaticPathsItem | undefined; export {};