UNPKG

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