fix(core): update

This commit is contained in:
2019-01-07 12:29:10 +01:00
parent 26d1b7cbf0
commit 29ea50796c
4 changed files with 337 additions and 24 deletions

View File

@ -0,0 +1,10 @@
import * as plugins from './smartacme.plugins';
export class CertManager {
/**
* retrieves a certificate
*/
retrieveCertificate() {
}
}

View File

@ -0,0 +1,7 @@
import * as plugins from './smartacme.plugins';
export class SslCertificate {
privateKey: string;
publicKey: string;
csr: string;
}