desktop-commander-marcus-ver
Version:
MCP server for terminal operations and file editing
9 lines (8 loc) • 311 B
TypeScript
declare class CommandManager {
getBaseCommand(command: string): string;
extractCommands(commandString: string): string[];
extractBaseCommand(commandStr: string): string | null;
validateCommand(command: string): Promise<boolean>;
}
export declare const commandManager: CommandManager;
export {};