From 24f692636c0bde6b49bd3c6d1dbe2733b683ca43 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 12 Jan 2019 13:52:21 +0100 Subject: [PATCH] fix(core): update --- ts/smartacme.classes.smartacme.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ts/smartacme.classes.smartacme.ts b/ts/smartacme.classes.smartacme.ts index f8aac4b..5db7495 100644 --- a/ts/smartacme.classes.smartacme.ts +++ b/ts/smartacme.classes.smartacme.ts @@ -16,6 +16,16 @@ export interface ISmartAcmeOptions { validateRemoteRequest: () => Promise; } +/** + * 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;