2016-05-31 17:16:45 +00:00
|
|
|
import "typings-global";
|
2016-06-25 00:29:34 +00:00
|
|
|
import { SshKey } from "./smartssh.classes.sshkey";
|
2016-05-31 17:16:45 +00:00
|
|
|
export declare class SshConfig {
|
2016-06-25 00:29:34 +00:00
|
|
|
sshKeyArray: SshKey[];
|
|
|
|
constructor(sshKeyArrayArg: SshKey[]);
|
|
|
|
/**
|
|
|
|
* the current config
|
|
|
|
*/
|
|
|
|
config: configObject[];
|
|
|
|
}
|
|
|
|
export interface configObject {
|
|
|
|
host: string;
|
|
|
|
authorized: boolean;
|
|
|
|
sshKey: SshKey;
|
2016-05-31 17:16:45 +00:00
|
|
|
}
|