UNPKG

495 BTypeScriptView Raw
1import { Option, CommandScope } from '../models/command';
2import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
3export default class BuildCommand extends ArchitectCommand {
4 readonly name: string;
5 readonly target: string;
6 readonly description: string;
7 static aliases: string[];
8 scope: CommandScope;
9 options: Option[];
10 validate(options: ArchitectCommandOptions): boolean;
11 run(options: ArchitectCommandOptions): Promise<number>;
12}