smartssh/dist/smartssh.classes.sshkey.d.ts

26 lines
569 B
TypeScript
Raw Normal View History

2016-11-23 11:38:38 +00:00
import 'typings-global';
export declare class SshKey {
2016-06-25 00:29:34 +00:00
private _privKey;
private _pubKey;
private _hostVar;
private _authorized;
2016-11-23 11:38:38 +00:00
/**
* the constructor for class SshKey
*/
constructor(optionsArg?: {
private?: string;
public?: string;
host?: string;
2016-06-25 00:29:34 +00:00
authorized?: boolean;
});
host: string;
2016-06-25 00:29:34 +00:00
privKey: string;
privKeyBase64: string;
pubKey: string;
pubKeyBase64: string;
2016-06-25 13:30:57 +00:00
authorized: boolean;
2016-06-25 00:29:34 +00:00
type: any;
read(filePathArg: any): void;
2016-06-26 02:07:03 +00:00
store(dirPathArg: string): void;
}