UNPKG
@xcud/remote-commander
Version:
latest (0.1.0)
0.1.0
MCP server for remote file operations via REST API
github.com/Positronic-AI/remote-commander
@xcud/remote-commander
/
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
>;