nativescript-paystack
Version:
Nativescript integration for Paystack payment platform.
22 lines • 678 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var observable_1 = require("tns-core-modules/data/observable/observable");
var Payment = (function (_super) {
__extends(Payment, _super);
function Payment(params) {
var _this = _super.call(this) || this;
_this.initialize(params);
return _this;
}
return Payment;
}(observable_1.Observable));
Payment.openDialogEvent = "openDialogEvent";
Payment.closeDialogEvent = "closeDialogEvent";
exports.Payment = Payment;
var Common = (function () {
function Common() {
}
return Common;
}());
exports.Common = Common;
//# sourceMappingURL=paystack.common.js.map