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