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

14 lines
441 B
TypeScript

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