@angular/cli
Version:
CLI tool for Angular
12 lines (11 loc) • 458 B
TypeScript
import { CommandScope, Option } from '../models/command';
import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
export default class Xi18nCommand extends ArchitectCommand {
readonly name: string;
readonly target: string;
readonly description: string;
readonly scope: CommandScope;
readonly multiTarget: true;
readonly options: Option[];
run(options: ArchitectCommandOptions): Promise<number>;
}