import { Command, Parser } from '@oclif/core'; import { INestApplicationContext, Type } from '@nestjs/common'; export default abstract class BaseCommand extends Command { protected abstract commandClass: Parameters[1]; protected abstract commandModule: Type; static flags: {}; static baseFlags: {}; run(): Promise; }