openai-cli-unofficial
Version:
A powerful OpenAI CLI Coding Agent built with TypeScript
17 lines • 437 B
TypeScript
export interface MenuChoice {
name: string;
value: string;
description?: string;
}
export interface MenuOptions {
message: string;
choices: MenuChoice[];
}
export declare class GeminiStyleMenu {
static show(options: MenuOptions): Promise<string>;
private static formatChoice;
}
export declare class InteractiveMenu {
static show(options: MenuOptions): Promise<string>;
}
//# sourceMappingURL=menu.d.ts.map