@light-merlin-dark/vssh
Version:
MCP-native SSH proxy for AI agents. CLI & MCP Server, plugin system, AI safety guards.
14 lines • 479 B
TypeScript
import type { Config } from '../config';
export declare class SSHService {
private config;
constructor(config: Config);
executeCommand(command: string): Promise<string>;
uploadFile(localPath: string, remotePath: string): Promise<void>;
downloadFile(remotePath: string, localPath: string): Promise<void>;
getFileInfo(remotePath: string): Promise<{
size: number;
mtime: Date;
mode: number;
}>;
}
//# sourceMappingURL=ssh.d.ts.map