blob: 52cefeb4d6502ea0fd35ed47cfe9c3121bb873f5 (
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
|
/*
* 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 country_code from './country_code';
import postcode from './postcode';
import state from './state';
import state_abbr from './state_abbr';
import street_name from './street_name';
import street_pattern from './street_pattern';
const location: LocationDefinition = {
city_name,
city_pattern,
country_code,
postcode,
state,
state_abbr,
street_name,
street_pattern,
};
export default location;
|