2016-05-31 19:16:45 +02:00
|
|
|
import "typings-global";
|
|
|
|
import { SshKey } from "./smartssh.classes.sshkey";
|
2016-06-25 15:30:57 +02:00
|
|
|
import { SshConfig } from "./smartssh.classes.sshconfig";
|
2016-05-31 19:16:45 +02:00
|
|
|
export declare class SshDir {
|
2016-06-26 16:16:12 +02:00
|
|
|
private _path;
|
|
|
|
private _sshKeyArray;
|
|
|
|
private _sshConfig;
|
2016-06-25 15:30:57 +02:00
|
|
|
constructor(sshKeyArray: SshKey[], sshConfig: SshConfig, sshDirPathArg?: string);
|
2016-06-24 02:49:55 +02:00
|
|
|
writeToDir(): void;
|
|
|
|
readFromDir(): void;
|
2016-06-26 16:16:12 +02:00
|
|
|
updateDirPath(dirPathArg: string): void;
|
2016-05-31 19:16:45 +02:00
|
|
|
getKeys(): SshKey[];
|
|
|
|
}
|