kjelsrud.dev/node_modules/astro/dist/cli/build/index.d.ts

9 lines
271 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import type yargs from 'yargs-parser';
import type { LogOptions } from '../../core/logger/core.js';
interface BuildOptions {
flags: yargs.Arguments;
logging: LogOptions;
}
export declare function build({ flags, logging }: BuildOptions): Promise<void>;
export {};