transbank-sdk
Version:
Transbank SDK for Node.js
16 lines (15 loc) • 500 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var BaseTransaction = /** @class */ (function () {
/**
* Constructor class Webpay Plus transaction.
* @param options You can pass options to use a custom configuration.
*/
function BaseTransaction(options) {
if (options === null)
throw new Error("Options can't be null.");
this.options = options;
}
return BaseTransaction;
}());
exports.default = BaseTransaction;