Files
website/node_modules/astro/dist/cli/info/index.d.ts
2024-05-06 17:15:30 -04:00

12 lines
405 B
TypeScript

import type yargs from 'yargs-parser';
import type { AstroConfig, AstroUserConfig } from '../../@types/astro.js';
interface InfoOptions {
flags: yargs.Arguments;
}
export declare function getInfoOutput({ userConfig, print, }: {
userConfig: AstroUserConfig | AstroConfig;
print: boolean;
}): Promise<string>;
export declare function printInfo({ flags }: InfoOptions): Promise<void>;
export {};