buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
16 lines (15 loc) • 521 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { ToolConfirmationOutcome } from 'buroventures-harald-code-core';
import React from 'react';
export interface ShellConfirmationRequest {
commands: string[];
onConfirm: (outcome: ToolConfirmationOutcome, approvedCommands?: string[]) => void;
}
export interface ShellConfirmationDialogProps {
request: ShellConfirmationRequest;
}
export declare const ShellConfirmationDialog: React.FC<ShellConfirmationDialogProps>;