UNPKG

transbank-sdk

Version:
16 lines (15 loc) 500 B
"use strict"; 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;