refactor: trim acp local exports

This commit is contained in:
Peter Steinberger
2026-05-01 20:47:31 +01:00
parent ef45efb250
commit f05723e0c4
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ export type AcpApprovalClass =
| "other"
| "unknown";
export type AcpApprovalClassification = {
type AcpApprovalClassification = {
toolName?: string;
approvalClass: AcpApprovalClass;
autoApprove: boolean;
@@ -69,7 +69,7 @@ function parseToolNameFromTitle(title: string | undefined | null): string | unde
return head ? normalizeToolName(head) : undefined;
}
export function resolveToolNameForPermission(params: {
function resolveToolNameForPermission(params: {
toolCall?: {
title?: string | null;
_meta?: unknown;

View File

@@ -13,7 +13,7 @@ import {
} from "../shared/string-coerce.js";
import { asRecord } from "./record-shared.js";
export type GatewayAttachment = {
type GatewayAttachment = {
type: string;
mimeType: string;
content: string;