Socialify

Folder ..

Viewing index.ts
13 lines (11 loc) • 285.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import account_type from './account_type';
import credit_card from './credit_card';
import currency from './currency';
import transaction_type from './transaction_type';

const finance: any = {
  account_type,
  credit_card,
  currency,
  transaction_type,
};

export default finance;