fix(core): update

This commit is contained in:
Philipp Kunz 2019-01-12 13:52:21 +01:00
parent a9f709ee7b
commit 24f692636c

View File

@ -16,6 +16,16 @@ export interface ISmartAcmeOptions {
validateRemoteRequest: () => Promise<boolean>;
}
/**
* The main SmartAcme class
* can be used setting up communication with an ACME authority
*
* ```ts
* const mySmartAcmeInstance = new SmartAcme({
* // see ISmartAcmeOptions for options
* })
* ```
*/
export class SmartAcme {
private options: ISmartAcmeOptions;