astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
8 lines (7 loc) • 406 B
TypeScript
import type { ModuleLoader } from '../core/module-loader/index.js';
import type { DevPipeline } from './pipeline.js';
import type { AstroConfig } from '../types/public/config.js';
export declare function recordServerError(loader: ModuleLoader, config: AstroConfig, { logger }: DevPipeline, _err: unknown): {
error: Error;
errorWithMetadata: import("../core/errors/errors.js").ErrorWithMetadata;
};