smartssh/dist/smartssh.classes.sshconfig.d.ts

16 lines
365 B
TypeScript
Raw Normal View History

import "typings-global";
2016-06-25 00:29:34 +00:00
import { SshKey } from "./smartssh.classes.sshkey";
export declare class SshConfig {
2016-06-25 00:29:34 +00:00
sshKeyArray: SshKey[];
constructor(sshKeyArrayArg: SshKey[]);
/**
2016-06-25 00:53:05 +00:00
* stores a config file
2016-06-25 00:29:34 +00:00
*/
2016-06-25 00:53:05 +00:00
storeConfig(dirPathArg: string): any;
2016-06-25 00:29:34 +00:00
}
export interface configObject {
host: string;
authorized: boolean;
sshKey: SshKey;
}