smartssh/dist/smartssh.classes.sshdir.d.ts
2016-06-01 03:57:17 +02:00

12 lines
362 B
TypeScript

import "typings-global";
import { SshInstance } from "./smartssh.classes.sshinstance";
import { SshKey } from "./smartssh.classes.sshkey";
export declare class SshDir {
path: string;
sshInstance: SshInstance;
constructor(sshInstanceArg: SshInstance, sshDirPathArg?: string);
syncToDir(): void;
syncFromDir(): void;
getKeys(): SshKey[];
}