UNPKG

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