research-cli
Version:
AI-powered research assistant with web search capabilities and beautiful terminal UI
41 lines • 1.26 kB
TypeScript
/**
* Config commands - Clipanion implementation
*
* Configuration management commands for CLI settings and preferences
*/
import { Command } from "clipanion";
export declare class ConfigCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
execute(): Promise<number>;
}
export declare class ConfigInitCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
execute(): Promise<number>;
}
export declare class ConfigShowCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
execute(): Promise<number>;
}
export declare class ConfigResetCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
force: boolean;
execute(): Promise<number>;
}
export declare class ConfigSetCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
key: string;
value: string;
execute(): Promise<number>;
}
export declare class ConfigGetCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
key: string;
execute(): Promise<number>;
}
//# sourceMappingURL=config.d.ts.map