UNPKG

astro

Version:

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

8 lines (7 loc) 410 B
import { AstroLogger, type AstroLoggerDestination, type AstroLoggerLevel } from '../core.js'; import type { AstroInlineConfig } from '../../../types/public/index.js'; export type NodeHandlerConfig = { level?: AstroLoggerLevel; }; export default function (options?: NodeHandlerConfig): AstroLoggerDestination; export declare function createNodeLoggerFromFlags(inlineConfig: AstroInlineConfig): AstroLogger;