import BaseCommand from '../../base.command'; import { InitModule } from '../../modules/project/init.module'; export default class InitCommand extends BaseCommand { commandClass: typeof InitCommand; commandModule: typeof InitModule; static description: string; static examples: string[]; static flags: { name: import("@oclif/core/lib/interfaces").OptionFlag; environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }