16 lines
636 B
TypeScript
16 lines
636 B
TypeScript
/**
|
|
* TUI config selector for `pi config` command
|
|
*/
|
|
import type { SettingsManager } from "../core/settings-manager.ts";
|
|
import { type ScopedResolvedPaths } from "../modes/interactive/components/config-selector.ts";
|
|
export interface ConfigSelectorOptions {
|
|
resolvedPaths: ScopedResolvedPaths;
|
|
settingsManager: SettingsManager;
|
|
cwd: string;
|
|
agentDir: string;
|
|
writeScope: "global" | "project";
|
|
projectModeAvailable: boolean;
|
|
}
|
|
/** Show TUI config selector and return when closed */
|
|
export declare function selectConfig(options: ConfigSelectorOptions): Promise<void>;
|
|
//# sourceMappingURL=config-selector.d.ts.map
|