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;