smartssh/dist/smartssh.classes.sshdir.d.ts

11 lines
329 B
TypeScript
Raw Normal View History

import "typings-global";
2016-06-01 00:31:29 +00:00
import { SshInstance } from "./smartssh.classes.sshinstance";
import { SshKey } from "./smartssh.classes.sshkey";
export declare class SshDir {
path: string;
constructor(sshDirPathArg: string);
2016-06-01 00:31:29 +00:00
syncToDir(sshInstanceArg: SshInstance): void;
syncFromDir(): void;
getKeys(): SshKey[];
}