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