UNPKG

@vibe-kit/grok-cli

Version:

An open-source AI agent that brings the power of Grok directly into your terminal.

14 lines (13 loc) 411 B
/** * Professional diff renderer component */ import React from 'react'; interface DiffRendererProps { diffContent: string; filename?: string; tabWidth?: number; availableTerminalHeight?: number; terminalWidth?: number; } export declare const DiffRenderer: ({ diffContent, filename, tabWidth, availableTerminalHeight, terminalWidth, }: DiffRendererProps) => React.ReactElement; export {};