diff options
| author | David Simão <[email protected]> | 2024-06-05 09:01:26 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-05 10:01:26 +0200 |
| commit | 3ae93934bc4cf5f6414acfa28ea727f758d18756 (patch) | |
| tree | de1c649f829dbcdca838c4fedcac76c3450ccff6 /src/index.ts | |
| parent | badaa6d60593fe41a1afa0e9a8bef6ae5bb8a352 (diff) | |
| download | faker-3ae93934bc4cf5f6414acfa28ea727f758d18756.tar.xz faker-3ae93934bc4cf5f6414acfa28ea727f758d18756.zip | |
feat(bitcoinAddress): multiple bitcoin address types and testnet (#2922)
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index b5676f44..2db17030 100644 --- a/src/index.ts +++ b/src/index.ts @@ -55,6 +55,14 @@ export type { DatabaseModule } from './modules/database'; export type { DatatypeModule } from './modules/datatype'; export type { DateModule, SimpleDateModule } from './modules/date'; export type { Currency, FinanceModule } from './modules/finance'; +export { + BitcoinAddressFamily, + BitcoinNetwork, +} from './modules/finance/bitcoin'; +export type { + BitcoinAddressFamilyType, + BitcoinNetworkType, +} from './modules/finance/bitcoin'; export type { FoodModule } from './modules/food'; export type { GitModule } from './modules/git'; export type { HackerModule } from './modules/hacker'; |
