UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

14 lines (13 loc) 450 B
import type { ExecAsk, ExecSecurity } from "../infra/exec-approvals.js"; export type RequestExecApprovalDecisionParams = { id: string; command: string; cwd: string; host: "gateway" | "node"; security: ExecSecurity; ask: ExecAsk; agentId?: string; resolvedPath?: string; sessionKey?: string; }; export declare function requestExecApprovalDecision(params: RequestExecApprovalDecisionParams): Promise<string | null>;