Compare commits

..

2 Commits

Author SHA1 Message Date
e3323ed4ef 2.0.15 2019-01-12 13:52:21 +01:00
24f692636c fix(core): update 2019-01-12 13:52:21 +01:00
3 changed files with 12 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartacme",
"version": "2.0.14",
"version": "2.0.15",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartacme",
"version": "2.0.14",
"version": "2.0.15",
"private": false,
"description": "acme implementation in TypeScript",
"main": "dist/index.js",

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;