Files
gemini-cli/packages/cli/src/ui/constants.ts
T

16 lines
364 B
TypeScript
Raw Normal View History

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
2025-04-15 21:41:08 -07:00
const EstimatedArtWidth = 59;
const BoxBorderWidth = 1;
export const BOX_PADDING_X = 1;
// Calculate width based on art, padding, and border
2025-04-17 18:06:21 -04:00
export const UI_WIDTH =
EstimatedArtWidth + BOX_PADDING_X * 2 + BoxBorderWidth * 2; // ~63
2025-04-15 21:41:08 -07:00
2025-04-17 18:06:21 -04:00
export const STREAM_DEBOUNCE_MS = 100;