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

14 lines
441 B
TypeScript
Raw Permalink 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 {
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-24 00:49:55 +00:00
writeToDir(): void;
readFromDir(): void;
2016-06-26 14:16:12 +00:00
updateDirPath(dirPathArg: string): void;
getKeys(): SshKey[];
}