UNPKG

giga-code

Version:

A personal AI CLI assistant powered by Grok for local development.

12 lines (11 loc) 425 B
import React from "react"; interface ConfirmationDialogProps { operation: string; filename: string; onConfirm: (dontAskAgain?: boolean) => void; onReject: (feedback?: string) => void; showVSCodeOpen?: boolean; content?: string; } export default function ConfirmationDialog({ operation, filename, onConfirm, onReject, showVSCodeOpen, content, }: ConfirmationDialogProps): React.JSX.Element; export {};