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

12 lines
362 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);
syncToDir(): void;
2016-06-01 00:31:29 +00:00
syncFromDir(): void;
getKeys(): SshKey[];
}