16 lines
541 B
JavaScript
16 lines
541 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.GetSslCertificate = void 0;
|
|
const Watchable_1 = require("./Watchable");
|
|
class GetSslCertificate extends Watchable_1.Watchable {
|
|
constructor(effects, opts) {
|
|
super(effects);
|
|
this.opts = opts;
|
|
this.label = 'GetSslCertificate';
|
|
}
|
|
fetch(callback) {
|
|
return this.effects.getSslCertificate({ ...this.opts, callback });
|
|
}
|
|
}
|
|
exports.GetSslCertificate = GetSslCertificate;
|
|
//# sourceMappingURL=GetSslCertificate.js.map
|