smartacme/dist/smartacme.classes.smartacme.d.ts

17 lines
394 B
TypeScript
Raw Normal View History

2016-11-01 17:27:57 +00:00
import * as acmeclient from './smartacme.classes.acmeclient';
export declare class SmartAcme {
2016-11-01 19:16:43 +00:00
acmeAccount: AcmeAccount;
2016-11-01 17:27:57 +00:00
acmeClient: acmeclient.AcmeClient;
constructor(directoryUrlArg?: string);
2016-11-07 17:41:52 +00:00
/**
* creates an account
*/
2016-11-01 19:16:43 +00:00
createAccount(): void;
2016-11-07 17:41:52 +00:00
/**
* returns the openssl key pair for
*/
getKeyPair(): any;
2016-11-01 19:16:43 +00:00
}
export declare class AcmeAccount {
2016-11-01 17:27:57 +00:00
}