import { CoreBaseCommand } from "./CoreBaseCommand.js"; import { Interfaces } from "@oclif/core"; /** CommandFlags is a helper type that extracts the flags from a command class. */ export type CommandFlags = Interfaces.InferredFlags; /** CommandArgs is a helper type that extracts the args from a command class. */ export type CommandArgs = Interfaces.InferredArgs;