@angular/cli
Version:
CLI tool for Angular
13 lines (12 loc) • 495 B
TypeScript
import { Option, CommandScope } from '../models/command';
import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
export default class BuildCommand extends ArchitectCommand {
readonly name: string;
readonly target: string;
readonly description: string;
static aliases: string[];
scope: CommandScope;
options: Option[];
validate(options: ArchitectCommandOptions): boolean;
run(options: ArchitectCommandOptions): Promise<number>;
}