2016-05-31 19:16:45 +02:00
|
|
|
import "typings-global";
|
2016-06-25 02:29:34 +02:00
|
|
|
import { SshKey } from "./smartssh.classes.sshkey";
|
2016-05-31 19:16:45 +02:00
|
|
|
export declare class SshConfig {
|
2016-06-25 02:29:34 +02:00
|
|
|
sshKeyArray: SshKey[];
|
|
|
|
constructor(sshKeyArrayArg: SshKey[]);
|
|
|
|
/**
|
2016-06-25 02:53:05 +02:00
|
|
|
* stores a config file
|
2016-06-25 02:29:34 +02:00
|
|
|
*/
|
2016-06-25 15:30:57 +02:00
|
|
|
store(dirPathArg: string): any;
|
|
|
|
read(dirPathArg: any): any;
|
2016-06-25 02:29:34 +02:00
|
|
|
}
|
|
|
|
export interface configObject {
|
2016-06-25 15:30:57 +02:00
|
|
|
configString: string;
|
2016-06-25 02:29:34 +02:00
|
|
|
authorized: boolean;
|
|
|
|
sshKey: SshKey;
|
2016-05-31 19:16:45 +02:00
|
|
|
}
|