Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljscript committed Oct 16, 2024
1 parent d216796 commit b3a58ff
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions apps/wallet-mobile/src/features/ReviewTx/common/types.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import {Balance, Portfolio} from '@yoroi/types'

Check failure on line 1 in apps/wallet-mobile/src/features/ReviewTx/common/types.ts

View workflow job for this annotation

GitHub Actions / check

Run autofix to sort these imports!
import {
TransactionBodyJSON,
TransactionInputsJSON,
TransactionOutputJSON,
} from '@emurgo/cardano-serialization-lib-nodejs'

export type TransactionBody = any
export type TransactionInputs = any
export type TransactionOutputs = any
export type TransactionBody = TransactionBodyJSON
export type TransactionInputs = TransactionInputsJSON
export type TransactionOutputs = TransactionOutputJSON

export type FormattedInput = {
assets: Array<{
Expand Down

0 comments on commit b3a58ff

Please sign in to comment.