UNPKG

astro

Version:

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

13 lines (12 loc) 603 B
import type { AstroLogger } from '../../core/logger/core.js'; import type { Flags } from '../flags.js'; import type { LockFileData } from '../../core/dev/lockfile.js'; import { formatBackgroundOutput, type BackgroundErrorResult, type BackgroundResult } from '../server.js'; export { formatBackgroundOutput, type BackgroundErrorResult, type BackgroundResult }; export declare function formatServerRunningMessage(data: LockFileData, { existing }?: { existing?: boolean; }): string; export declare function background({ flags, logger, }: { flags: Flags; logger: AstroLogger; }): Promise<void>;