UNPKG

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