-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
21 lines (20 loc) · 1.38 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Submarine } from './src/submarine';
import { SubmarinePaymentMethodStep } from './src/checkout/submarine_payment_method_step';
import { SubmarineThankYouStep } from './src/checkout/submarine_thank_you_step';
import { BraintreeCreditCardShopPaymentMethod } from './src/checkout/payment_methods/shop_payment_methods/braintree_credit_card_shop_payment_method';
import { BraintreeApplePayShopPaymentMethod } from './src/checkout/payment_methods/shop_payment_methods/braintree_apple_pay_shop_payment_method';
import { CybersourceCreditCardShopPaymentMethod } from './src/checkout/payment_methods/shop_payment_methods/cybersource_credit_card_shop_payment_method';
import { StripeCreditCardShopPaymentMethod } from './src/checkout/payment_methods/shop_payment_methods/stripe_credit_card_shop_payment_method';
import { KomojuCreditCardShopPaymentMethod } from './src/checkout/payment_methods/shop_payment_methods/komoju_credit_card_payment_method';
import { SubmarineBankTransferShopPaymentMethod } from './src/checkout/payment_methods/shop_payment_methods/submarine_bank_transfer_payment_method';
export {
Submarine,
SubmarinePaymentMethodStep,
SubmarineThankYouStep,
BraintreeCreditCardShopPaymentMethod,
BraintreeApplePayShopPaymentMethod,
CybersourceCreditCardShopPaymentMethod,
StripeCreditCardShopPaymentMethod,
KomojuCreditCardShopPaymentMethod,
SubmarineBankTransferShopPaymentMethod
};