diff options
| author | Shinigami <[email protected]> | 2023-04-22 00:20:59 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-22 00:20:59 +0200 |
| commit | 16d611f7ec1669480014d42549e2fabc6f8716a0 (patch) | |
| tree | 71c1e62c7ed998c75e14c641b060656ae1244532 | |
| parent | 3529ef7a97513286ef9ecfdfb3a460bd9723f69f (diff) | |
| download | faker-16d611f7ec1669480014d42549e2fabc6f8716a0.tar.xz faker-16d611f7ec1669480014d42549e2fabc6f8716a0.zip | |
fix: export AircraftType correctly as type (#2077)
| -rw-r--r-- | src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts index 3e28e2a0..25f1a235 100644 --- a/src/index.ts +++ b/src/index.ts @@ -39,8 +39,8 @@ export * from './locale'; export { fakerEN as faker } from './locale'; export * from './locales'; export * as allLocales from './locales'; -export { Aircraft, AircraftType } from './modules/airline'; -export type { AirlineModule } from './modules/airline'; +export { Aircraft } from './modules/airline'; +export type { AircraftType, AirlineModule } from './modules/airline'; export type { AnimalModule } from './modules/animal'; export { CssFunction, CssSpace } from './modules/color'; export type { |
