UNPKG
desktop-commander-marcus-ver
Version:
latest (0.3.6)
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
MCP server for terminal operations and file editing
github.com/wonderwhy-er/DesktopCommanderMCP
desktop-commander-marcus-ver
/
dist
/
handlers
/
process-handlers.d.ts
10 lines
(9 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ServerResult
}
from
'../types.js'
;
/** * Handle list_processes command */
export
declare
function
handleListProcesses
(
):
Promise
<
ServerResult
>;
/** * Handle kill_process command */
export
declare
function
handleKillProcess
(
args
:
unknown
):
Promise
<
ServerResult
>;