@wonderwhy-er/desktop-commander
Version:
MCP server for terminal operations and file editing
16 lines (15 loc) • 552 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';
interface SearchReplace {
search: string;
replace: string;
}
export declare function performSearchReplace(filePath: string, block: SearchReplace, expectedReplacements?: number): Promise<ServerResult>;
export {};