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