UNPKG

astro

Version:

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

15 lines (14 loc) 490 B
import type { AstroSettings, RoutesList } from '../../types/astro.js'; import type { Logger } from '../logger/core.js'; import type { AllPagesData } from './types.js'; interface CollectPagesDataOptions { settings: AstroSettings; logger: Logger; manifest: RoutesList; } interface CollectPagesDataResult { assets: Record<string, string>; allPages: AllPagesData; } export declare function collectPagesData(opts: CollectPagesDataOptions): CollectPagesDataResult; export {};