blob: d0fe278c2494262bf93fcef1cced6158edb3e876 (
plain)
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
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { LocationDefinition } from '../../..';
import building_number from './building_number';
import city_name from './city_name';
import city_pattern from './city_pattern';
import country from './country';
import direction from './direction';
import postcode from './postcode';
import secondary_address from './secondary_address';
import street_address from './street_address';
import street_name from './street_name';
import street_pattern from './street_pattern';
const location: LocationDefinition = {
building_number,
city_name,
city_pattern,
country,
direction,
postcode,
secondary_address,
street_address,
street_name,
street_pattern,
};
export default location;
|