diff options
| author | Matthew Petro <[email protected]> | 2023-01-30 14:13:46 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-30 21:13:46 +0000 |
| commit | 579c9adb5affa01ee5ee384942f56d662a21022e (patch) | |
| tree | aacc7cc0304f5fca777228c63bf26d5f309a7ed7 /src/index.ts | |
| parent | 05d6eb43f3f5766275333c6e960470e38bae7162 (diff) | |
| download | faker-579c9adb5affa01ee5ee384942f56d662a21022e.tar.xz faker-579c9adb5affa01ee5ee384942f56d662a21022e.zip | |
feat(airline): add airline module (#1699)
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index d39bb409..7fe80026 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,7 @@ import { Faker } from './faker'; import allLocales from './locales'; export type { + AirlineDefinitions, AnimalDefinitions, ColorDefinitions, CommerceDefinitions, @@ -35,6 +36,8 @@ export type { } from './definitions'; export { FakerError } from './errors/faker-error'; export type { FakerOptions, UsableLocale, UsedLocales } from './faker'; +export { Aircraft, AircraftType } from './modules/airline'; +export type { AirlineModule } from './modules/airline'; export type { AnimalModule } from './modules/animal'; export type { Casing, |
