import BaseCommand from '../../base.command'; import { LinkModule } from '../../modules/project/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; }; static flags: { name: import("@oclif/core/lib/interfaces").OptionFlag; }; }