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

12 lines
363 B
TypeScript
Raw Normal View History

import "typings-global";
2016-06-01 00:31:29 +00:00
import { SshInstance } from "./smartssh.classes.sshinstance";
import { SshKey } from "./smartssh.classes.sshkey";
export declare class SshDir {
path: string;
2016-06-01 01:57:17 +00:00
sshInstance: SshInstance;
constructor(sshInstanceArg: SshInstance, sshDirPathArg?: string);
2016-06-24 00:49:55 +00:00
writeToDir(): void;
readFromDir(): void;
getKeys(): SshKey[];
}