UNPKG

@wonderwhy-er/desktop-commander

Version:

MCP server for terminal operations and file editing

11 lines (10 loc) 313 B
interface SearchReplace { search: string; replace: string; } export declare function performSearchReplace(filePath: string, block: SearchReplace): Promise<void>; export declare function parseEditBlock(blockContent: string): Promise<{ filePath: string; searchReplace: SearchReplace; }>; export {};