2016-05-31 17:16:45 +00:00
|
|
|
import "typings-global";
|
|
|
|
import { SshKey } from "./smartssh.classes.sshkey";
|
2016-06-25 13:30:57 +00:00
|
|
|
import { SshConfig } from "./smartssh.classes.sshconfig";
|
2016-05-31 17:16:45 +00:00
|
|
|
export declare class SshDir {
|
|
|
|
path: string;
|
2016-06-25 00:29:34 +00:00
|
|
|
private sshKeyArray;
|
2016-06-25 13:30:57 +00:00
|
|
|
private sshConfig;
|
|
|
|
constructor(sshKeyArray: SshKey[], sshConfig: SshConfig, sshDirPathArg?: string);
|
2016-06-24 00:49:55 +00:00
|
|
|
writeToDir(): void;
|
|
|
|
readFromDir(): void;
|
2016-05-31 17:16:45 +00:00
|
|
|
getKeys(): SshKey[];
|
|
|
|
}
|