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

23 lines
513 B
TypeScript
Raw Normal View History

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