giga-code
Version:
A personal AI CLI assistant powered by Grok for local development.
14 lines (13 loc) • 401 B
TypeScript
import React from "react";
interface CommandSuggestion {
command: string;
description: string;
}
interface CommandSuggestionsProps {
suggestions: CommandSuggestion[];
input: string;
selectedIndex: number;
isVisible: boolean;
}
export declare function CommandSuggestions({ suggestions, input, selectedIndex, isVisible, }: CommandSuggestionsProps): React.JSX.Element;
export {};