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

11 lines
290 B
TypeScript
Raw Permalink Normal View History

import "typings-global";
import { SshKey } from "./smartssh.classes.sshkey";
export declare class SshDir {
path: string;
2016-06-25 00:29:34 +00:00
private sshKeyArray;
constructor(sshKeyArray: SshKey[], sshDirPathArg?: string);
2016-06-24 00:49:55 +00:00
writeToDir(): void;
readFromDir(): void;
getKeys(): SshKey[];
}