Skip to content

Commit

Permalink
Remove missing types from index
Browse files Browse the repository at this point in the history
  • Loading branch information
zencephalon committed Nov 8, 2023
1 parent 6ba3f01 commit 2313c77
Showing 1 changed file with 4 additions and 24 deletions.
28 changes: 4 additions & 24 deletions src/hooks/index.ts
Original file line number Diff line number Diff line change
@@ -1,44 +1,24 @@
export {
useSimulateDepositERC20,
type UseSimulateDepositERC20Parameters,
type UseSimulateDepositERC20ReturnType,
} from './L1/useSimulateDepositERC20.js'
export {
useSimulateDepositETH,
type UseSimulateDepositETHParameters,
type UseSimulateDepositETHReturnType,
} from './L1/useSimulateDepositETH.js'
export { useSimulateDepositERC20, type UseSimulateDepositERC20Parameters } from './L1/useSimulateDepositERC20.js'
export { useSimulateDepositETH, type UseSimulateDepositETHParameters } from './L1/useSimulateDepositETH.js'
export {
useWriteDepositERC20,
type UseWriteDepositERC20Parameters,
type UseWriteDepositERC20ReturnType,
type WriteDepositERC20Parameters,
} from './L1/useWriteDepositERC20.js'
export {
useWriteDepositETH,
type UseWriteDepositETHParameters,
type UseWriteDepositETHReturnType,
type WriteDepositETHParameters,
} from './L1/useWriteDepositETH.js'
export {
useSimulateWithdrawERC20,
type UseSimulateWithdrawERC20Parameters,
type UseSimulateWithdrawERC20ReturnType,
} from './L2/useSimulateWithdrawERC20.js'
export {
useSimulateWithdrawETH,
type UseSimulateWithdrawETHParameters,
type UseSimulateWithdrawETHReturnType,
} from './L2/useSimulateWithdrawETH.js'
export { useSimulateWithdrawERC20, type UseSimulateWithdrawERC20Parameters } from './L2/useSimulateWithdrawERC20.js'
export { useSimulateWithdrawETH, type UseSimulateWithdrawETHParameters } from './L2/useSimulateWithdrawETH.js'
export {
useWriteWithdrawERC20,
type UseWriteWithdrawERC20Parameters,
type UseWriteWithdrawERC20ReturnType,
type WriteWithdrawERC20Parameters,
} from './L2/useWriteWithdrawERC20.js'
export {
useWriteWithdrawETH,
type UseWriteWithdrawETHParameters,
type UseWriteWithdrawETHReturnType,
type WriteWithdrawETHParameters,
} from './L2/useWriteWithdrawETH.js'

0 comments on commit 2313c77

Please sign in to comment.