stripe-react-native-apple-pay
Version:
React Native wrapper around Stripe Apple Pay
16 lines (15 loc) • 779 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ApplePayError = void 0;
/** Use this type for a payment that occurs in the future, such as a pre-order. Only available on iOS 15 and up, otherwise falls back to ImmediateCartSummaryItem. */
/** Use this type for payments that will occur immediately. */
/** Use this type for payments that occur more than once, such as a subscription. Only available on iOS 15 and up, otherwise falls back to ImmediateCartSummaryItem.*/
let ApplePayError = exports.ApplePayError = /*#__PURE__*/function (ApplePayError) {
ApplePayError["Canceled"] = "Canceled";
ApplePayError["Failed"] = "Failed";
ApplePayError["Unknown"] = "Unknown";
return ApplePayError;
}({});
//# sourceMappingURL=ApplePay.js.map