@wonderwhy-er/desktop-commander
Version:
MCP server for terminal operations and file editing
17 lines (16 loc) • 601 B
TypeScript
/**
* SPDX-License-Identifier: PolyForm-Small-Business-1.0.0
*
* Copyright (c) 2025 Desktope Commander MCP Contributors
*
* This file is licensed under the PolyForm Small Business License 1.0.0
* See the LICENSE file in the /src/polyform directory for the full license text.
*/
import { ServerResult } from '../../types.js';
/**
* Handle edit_block command with enhanced functionality
* - Supports multiple replacements
* - Validates expected replacements count
* - Provides detailed error messages
*/
export declare function handleEnhancedEditBlock(args: unknown): Promise<ServerResult>;