2016-05-31 17:16:45 +00:00
|
|
|
import "typings-global";
|
2016-06-01 00:31:29 +00:00
|
|
|
import { SshInstance } from "./smartssh.classes.sshinstance";
|
2016-05-31 17:16:45 +00:00
|
|
|
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;
|
2016-05-31 17:16:45 +00:00
|
|
|
getKeys(): SshKey[];
|
|
|
|
}
|