UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

21 lines (20 loc) 595 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import type { HistoryItem } from '../types.js'; import { Config } from 'buroventures-harald-code-core'; import { SlashCommand } from '../commands/types.js'; interface HistoryItemDisplayProps { item: HistoryItem; availableTerminalHeight?: number; terminalWidth: number; isPending: boolean; config?: Config; isFocused?: boolean; commands?: readonly SlashCommand[]; } export declare const HistoryItemDisplay: React.FC<HistoryItemDisplayProps>; export {};