@adinsure-ops/ops-cli
Version:
Operations CLI for working with AdInsure
12 lines (11 loc) • 392 B
TypeScript
import CommandBase from '../../command.base.js';
export default class ConfigGet extends CommandBase<typeof ConfigGet> {
static aliases: string[];
static description: string;
static usage: string;
static examples: string[];
static args: {
type: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
};
run(): Promise<void>;
}