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;
|
2016-06-01 01:57:17 +00:00
|
|
|
sshInstance: SshInstance;
|
|
|
|
constructor(sshInstanceArg: SshInstance, sshDirPathArg?: string);
|
|
|
|
syncToDir(): void;
|
2016-06-01 00:31:29 +00:00
|
|
|
syncFromDir(): void;
|
2016-05-31 17:16:45 +00:00
|
|
|
getKeys(): SshKey[];
|
|
|
|
}
|