diff options
| author | Shinigami <[email protected]> | 2022-06-19 18:45:43 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-19 18:45:43 +0200 |
| commit | 8de200a29db0740cda853a5364ee611b642b0a06 (patch) | |
| tree | e52265edfaaab28a821c9af21d8225afa16e2d5b /src | |
| parent | b5011680b8c022114bbeeeeeacb99fe1842ae98d (diff) | |
| download | faker-8de200a29db0740cda853a5364ee611b642b0a06.tar.xz faker-8de200a29db0740cda853a5364ee611b642b0a06.zip | |
chore: use type export for science interfaces (#1093)
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index 48b21a05..8a6b7ecc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -39,7 +39,7 @@ export type { } from './modules/color'; export { Gender } from './modules/name'; export type { GenderType } from './modules/name'; -export { ChemicalElement, Unit } from './modules/science'; +export type { ChemicalElement, Unit } from './modules/science'; export { Faker }; // since we are requiring the top level of faker, load all locales by default |
