Skip to content

Commit 0026321

Browse files
authored
feat: add types export (#537)
* feat: add types export * update changelog * export additional types
1 parent 48a53e9 commit 0026321

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Add missing exports for types ([#537](https://github.com/MetaMask/smart-transactions-controller/pull/537))
13+
- `Fee`
14+
- `Fees`
15+
- `IndividualTxFees`
16+
- `FeatureFlags`
17+
- `SmartTransactionMinedTx`
18+
- `SmartTransaction`
19+
- `SmartTransactionCancellationReason`
20+
- `SmartTransactionStatuses`
21+
- `ClientId`
22+
1023
## [19.0.0]
1124

1225
### Added

src/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,14 @@ export type {
99
SmartTransactionsControllerSmartTransactionConfirmationDoneEvent,
1010
SmartTransactionsControllerEvents,
1111
} from './SmartTransactionsController';
12+
export type {
13+
Fee,
14+
Fees,
15+
IndividualTxFees,
16+
FeatureFlags,
17+
SmartTransactionMinedTx,
18+
SmartTransaction,
19+
SmartTransactionCancellationReason,
20+
SmartTransactionStatuses,
21+
ClientId,
22+
} from './types';

0 commit comments

Comments
 (0)