UNPKG

@lomray/microservice-payment-stripe

Version:

Stripe payment microservice based on NodeJS & inverted json.

17 lines (16 loc) 377 B
/** * Enum for storing stripe payment methods */ declare enum StripePaymentMethods { CARD = "card", BANKCONTACT = "bancontact", EPS = "eps", GIROPAY = "giropay", IDEAL = "ideal", P24 = "p24", SEPA_DEBIT = "sepa_debit", SOFORT = "sofort", APPLE_PAY = "apple_pay", GOOGLE_PAY = "google_pay" } export { StripePaymentMethods as default };