diff options
| author | Robin van der Vliet <[email protected]> | 2023-09-15 21:48:17 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-15 19:48:17 +0000 |
| commit | 82b779da5e87fddd7b5a5564b7228ac54b44d349 (patch) | |
| tree | ed115b19bffa0a118abb551f52d2eadff5602beb /src/definitions | |
| parent | cb336641019f720a965e115678100e163c688b9f (diff) | |
| download | faker-82b779da5e87fddd7b5a5564b7228ac54b44d349.tar.xz faker-82b779da5e87fddd7b5a5564b7228ac54b44d349.zip | |
feat(location): Support ISO 3166-1 numeric country codes (#2325)
Diffstat (limited to 'src/definitions')
| -rw-r--r-- | src/definitions/location.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/definitions/location.ts b/src/definitions/location.ts index b32ae1c1..42d79c01 100644 --- a/src/definitions/location.ts +++ b/src/definitions/location.ts @@ -44,7 +44,7 @@ export type LocationDefinition = LocaleEntry<{ /** * The [ISO_3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) country codes. */ - country_code: Array<{ alpha2: string; alpha3: string }>; + country_code: Array<{ alpha2: string; alpha3: string; numeric: string }>; /** * The names of this country's states, or other first-level administrative areas. |
