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