..
Viewing
index.ts
27 lines (25 loc) • 581.0 B
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 | import american_express from './american_express';
import diners_club from './diners_club';
import discover from './discover';
import instapayment from './instapayment';
import jcb from './jcb';
import laser from './laser';
import maestro from './maestro';
import mastercard from './mastercard';
import solo from './solo';
import switch_ from './switch';
import visa from './visa';
const credit_card: any = {
american_express,
diners_club,
discover,
instapayment,
jcb,
laser,
maestro,
mastercard,
solo,
switch: switch_,
visa,
};
export default credit_card;
|
|