Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ module.exports = {
coverageThreshold: {
global: {
branches: 74.65,
functions: 91.5,
lines: 92.52,
statements: 92.51,
functions: 88.18,
lines: 92.33,
statements: 91.89,
},
},
moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx', 'node'],
Expand Down
12 changes: 6 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ export type {
SmartTransactionsControllerSmartTransactionConfirmationDoneEvent,
SmartTransactionsControllerEvents,
} from './SmartTransactionsController';
export type {
Fee,
Fees,
IndividualTxFees,
FeatureFlags,
export {
type Fee,
type Fees,
type IndividualTxFees,
type FeatureFlags,
type SmartTransaction,
SmartTransactionMinedTx,
SmartTransaction,
SmartTransactionCancellationReason,
SmartTransactionStatuses,
ClientId,
Expand Down
Loading