import BaseCommand from '../../base.command'; import { LinkModule } from '../../modules/dbms/link.module'; export default class LinkCommand extends BaseCommand { commandClass: typeof LinkCommand; commandModule: typeof LinkModule; static description: string; static examples: string[]; static args: { filePath: import("@oclif/core/lib/interfaces/parser").Arg>; dbmsName: import("@oclif/core/lib/interfaces/parser").Arg>; }; static flags: { confirm: import("@oclif/core/lib/interfaces").BooleanFlag; }; }