astro-ghostcms/.pnpm-store/v3/files/c3/569b546015120915946133ee4f2...

10 lines
519 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { Arguments as Flags } from 'yargs-parser';
import type { AstroInlineConfig } from '../@types/astro.js';
import { Logger } from '../core/logger/core.js';
export declare function flagsToAstroInlineConfig(flags: Flags): AstroInlineConfig;
/**
* The `logging` is usually created from an `AstroInlineConfig`, but some flows like `add`
* doesn't read the AstroConfig directly, so we create a `logging` object from the CLI flags instead.
*/
export declare function createLoggerFromFlags(flags: Flags): Logger;