import BaseCommand from '../../base.command'; import { AddTagModule } from '../../modules/dbms/add-tag.module'; export default class AddTagCommand extends BaseCommand { commandClass: typeof AddTagCommand; commandModule: typeof AddTagModule; static description: string; static examples: string[]; static args: { tagName: import("@oclif/core/lib/interfaces/parser").Arg>; dbms: import("@oclif/core/lib/interfaces/parser").Arg>; }; static flags: { environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }