12 lines
362 B
TypeScript
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[];
|
|
}
|