UNPKG

559 BTypeScriptView Raw
1import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
2import { Arguments } from '../models/interface';
3import { Schema as BuildCommandSchema } from './build';
4export declare class BuildCommand extends ArchitectCommand<BuildCommandSchema> {
5 readonly target = "build";
6 run(options: ArchitectCommandOptions & Arguments): Promise<number>;
7 reportAnalytics(paths: string[], options: BuildCommandSchema & Arguments, dimensions?: (boolean | number | string)[], metrics?: (boolean | number | string)[]): Promise<void>;
8}