8 lines
271 B
TypeScript
8 lines
271 B
TypeScript
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 {};
|