Socialify

Folder ..

Viewing index.ts
47 lines (45 loc) • 1.2 KB

 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import building_number from './building_number';
import city from './city';
import city_name from './city_name';
import city_prefix from './city_prefix';
import city_suffix from './city_suffix';
import country from './country';
import country_code from './country_code';
import country_code_alpha_3 from './country_code_alpha_3';
import county from './county';
import default_country from './default_country';
import direction from './direction';
import direction_abbr from './direction_abbr';
import postcode from './postcode';
import postcode_by_state from './postcode_by_state';
import secondary_address from './secondary_address';
import state from './state';
import state_abbr from './state_abbr';
import street_address from './street_address';
import street_name from './street_name';
import street_suffix from './street_suffix';
import time_zone from './time_zone';

const address: any = {
  building_number,
  city,
  city_name,
  city_prefix,
  city_suffix,
  country,
  country_code,
  country_code_alpha_3,
  county,
  default_country,
  direction,
  direction_abbr,
  postcode,
  postcode_by_state,
  secondary_address,
  state,
  state_abbr,
  street_address,
  street_name,
  street_suffix,
  time_zone,
};

export default address;