smartssh/dist/smartssh.classes.sshdir.d.ts

13 lines
393 B
TypeScript
Raw Normal View History

import "typings-global";
import { SshKey } from "./smartssh.classes.sshkey";
2016-06-25 13:30:57 +00:00
import { SshConfig } from "./smartssh.classes.sshconfig";
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;
getKeys(): SshKey[];
}