blob: cb99bfe4f55d1b876770d97ba1e945c98fc83e9c (
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
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { LocationDefinition } from '../../..';
import city_name from './city_name';
import city_pattern from './city_pattern';
import city_prefix from './city_prefix';
import city_suffix from './city_suffix';
import postcode from './postcode';
import street_pattern from './street_pattern';
import street_suffix from './street_suffix';
const location: LocationDefinition = {
city_name,
city_pattern,
city_prefix,
city_suffix,
postcode,
street_pattern,
street_suffix,
};
export default location;
|