UNPKG

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