smartssh/dist/smartssh.classes.sshdir.d.ts
2016-06-25 15:30:57 +02:00

13 lines
393 B
TypeScript

import "typings-global";
import { SshKey } from "./smartssh.classes.sshkey";
import { SshConfig } from "./smartssh.classes.sshconfig";
export declare class SshDir {
path: string;
private sshKeyArray;
private sshConfig;
constructor(sshKeyArray: SshKey[], sshConfig: SshConfig, sshDirPathArg?: string);
writeToDir(): void;
readFromDir(): void;
getKeys(): SshKey[];
}