diff options
| author | Joscha Feth <[email protected]> | 2024-10-12 14:39:42 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-12 15:39:42 +0200 |
| commit | 4056ab09c64be40d41562284ec64e7531fbaff41 (patch) | |
| tree | f33217e1fb0d98b52f6076421aaca98757d52aac /src/definitions | |
| parent | 033c23b109de18dcfaf8abeab4e134a47c57b460 (diff) | |
| download | faker-4056ab09c64be40d41562284ec64e7531fbaff41.tar.xz faker-4056ab09c64be40d41562284ec64e7531fbaff41.zip | |
feat(location): add `continent` method (#3162)
Diffstat (limited to 'src/definitions')
| -rw-r--r-- | src/definitions/location.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/definitions/location.ts b/src/definitions/location.ts index 5aee4e79..9fbda95f 100644 --- a/src/definitions/location.ts +++ b/src/definitions/location.ts @@ -37,6 +37,11 @@ export type LocationDefinition = LocaleEntry<{ city_suffix: string[]; /** + * The names of all continents. + */ + continent: string[]; + + /** * The names of all countries. */ country: string[]; |
