UNPKG

@angular/cli

Version:
11 lines (10 loc) 429 B
import { CommandScope, Option } from '../models/command'; import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command'; export default class RunCommand extends ArchitectCommand { readonly name: string; readonly description: string; readonly scope: CommandScope; readonly arguments: string[]; readonly options: Option[]; run(options: ArchitectCommandOptions): Promise<number>; }