/** * DeleteInterface Handler - Delete ABAP Interface via AdtClient * * Uses AdtClient.getInterface().delete() for high-level delete operation. * Includes deletion check before actual deletion. */ import type { HandlerContext } from '../../../lib/handlers/interfaces'; export declare const TOOL_DEFINITION: { readonly name: "DeleteInterface"; readonly available_in: readonly ["onprem", "cloud", "legacy"]; readonly description: "Delete an ABAP interface from the SAP system. Includes deletion check before actual deletion. Transport request optional for $TMP objects."; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly interface_name: { readonly type: "string"; readonly description: "Interface name (e.g., Z_MY_INTERFACE)."; }; readonly transport_request: { readonly type: "string"; readonly description: "Transport request number (e.g., E19K905635). Required for transportable objects. Optional for local objects ($TMP)."; }; }; readonly required: readonly ["interface_name"]; }; }; interface DeleteInterfaceArgs { interface_name: string; transport_request?: string; } /** * Main handler for DeleteInterface MCP tool * * Uses AdtClient.getInterface().delete() - high-level delete operation with deletion check */ export declare function handleDeleteInterface(context: HandlerContext, args: DeleteInterfaceArgs): Promise<{ isError: boolean; content: { type: string; text: any; }[]; }>; export {}; //# sourceMappingURL=handleDeleteInterface.d.ts.map