import { Command } from "@oclif/core"; /** * 設問2に対応するコマンドクラス */ export default class Check extends Command { static description: string; static examples: string[]; static flags: { n: import("@oclif/core/lib/interfaces").OptionFlag; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }