2016-11-23 11:38:38 +00:00
|
|
|
import 'typings-global';
|
|
|
|
import { SshKey } from './smartssh.classes.sshkey';
|
|
|
|
import { SshConfig } from './smartssh.classes.sshconfig';
|
2016-05-31 17:16:45 +00:00
|
|
|
export declare class SshDir {
|
2016-06-26 14:16:12 +00:00
|
|
|
private _path;
|
|
|
|
private _sshKeyArray;
|
|
|
|
private _sshConfig;
|
2016-06-25 13:30:57 +00:00
|
|
|
constructor(sshKeyArray: SshKey[], sshConfig: SshConfig, sshDirPathArg?: string);
|
2016-06-28 00:10:51 +00:00
|
|
|
writeToDir(dirPathArg?: string): void;
|
|
|
|
readFromDir(dirPathArg?: string): void;
|
2016-06-26 14:16:12 +00:00
|
|
|
updateDirPath(dirPathArg: string): void;
|
2016-05-31 17:16:45 +00:00
|
|
|
getKeys(): SshKey[];
|
|
|
|
}
|