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

14 lines
479 B
TypeScript
Raw Normal View History

2016-11-23 11:38:38 +00:00
import 'typings-global';
import { SshKey } from './smartssh.classes.sshkey';
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-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;
getKeys(): SshKey[];
}