UNPKG

@angular/cli

Version:
13 lines (12 loc) 490 B
import { CommandScope, Option } from '../models/command'; import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command'; export default class LintCommand extends ArchitectCommand { readonly name: string; readonly target: string; readonly description: string; static aliases: string[]; readonly scope: CommandScope; readonly multiTarget: boolean; readonly options: Option[]; run(options: ArchitectCommandOptions): Promise<number>; }