UNPKG

astro

Version:

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

42 lines (41 loc) 1.47 kB
import fsMod from 'node:fs'; import { type FSWatcher } from 'vite'; import type { AstroSettings, RoutesList } from '../../types/astro.js'; import type { AstroInlineConfig } from '../../types/public/config.js'; import type { SSRManifest } from '../app/types.js'; import type { Logger } from '../logger/core.js'; type SyncOptions = { mode: string; logger: Logger; settings: AstroSettings; force?: boolean; skip?: { content?: boolean; cleanup?: boolean; }; routesList: RoutesList; manifest: SSRManifest; command: 'build' | 'dev' | 'sync'; watcher?: FSWatcher; }; export default function sync(inlineConfig: AstroInlineConfig, { fs, telemetry: _telemetry }?: { fs?: typeof fsMod; telemetry?: boolean; }): Promise<void>; /** * Clears the content layer and content collection cache, forcing a full rebuild. */ export declare function clearContentLayerCache({ settings, logger, fs, isDev, }: { settings: AstroSettings; logger: Logger; fs?: typeof fsMod; isDev: boolean; }): Promise<void>; /** * Generates TypeScript types for all Astro modules. This sets up a `src/env.d.ts` file for type inferencing, * and defines the `astro:content` module for the Content Collections API. * * @experimental The JavaScript API is experimental */ export declare function syncInternal({ mode, logger, fs, settings, skip, force, routesList, command, watcher, manifest, }: SyncOptions): Promise<void>; export {};