Skip to content

Commit

Permalink
chore: export types
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed Jul 11, 2023
1 parent 120f3cd commit 28eee5f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export type {
DeployContractReturnType,
} from './actions/wallet/deployContract.js'
export type { DropTransactionParameters } from './actions/test/dropTransaction.js'
export type { GetAutomineReturnType } from './actions/test/getAutomine.js'
export type {
EstimateContractGasParameters,
EstimateContractGasReturnType,
Expand Down Expand Up @@ -181,6 +182,9 @@ export type {
RequestPermissionsReturnType,
RequestPermissionsParameters,
} from './actions/wallet/requestPermissions.js'
export type { GetTxpoolContentReturnType } from './actions/test/getTxpoolContent.js'
export type { GetTxpoolStatusReturnType } from './actions/test/getTxpoolStatus.js'
export type { InspectTxpoolReturnType } from './actions/test/inspectTxpool.js'
export type { ResetParameters } from './actions/test/reset.js'
export type { RevertParameters } from './actions/test/revert.js'
export type {
Expand Down
20 changes: 16 additions & 4 deletions src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@ export {
dropTransaction,
type DropTransactionParameters,
} from './actions/test/dropTransaction.js'
export { getAutomine } from './actions/test/getAutomine.js'
export { getTxpoolContent } from './actions/test/getTxpoolContent.js'
export { getTxpoolStatus } from './actions/test/getTxpoolStatus.js'
export {
getAutomine,
type GetAutomineReturnType,
} from './actions/test/getAutomine.js'
export {
getTxpoolContent,
type GetTxpoolContentReturnType,
} from './actions/test/getTxpoolContent.js'
export {
getTxpoolStatus,
type GetTxpoolStatusReturnType,
} from './actions/test/getTxpoolStatus.js'
export {
impersonateAccount,
type ImpersonateAccountParameters,
Expand All @@ -13,7 +22,10 @@ export {
increaseTime,
type IncreaseTimeParameters,
} from './actions/test/increaseTime.js'
export { inspectTxpool } from './actions/test/inspectTxpool.js'
export {
inspectTxpool,
type InspectTxpoolReturnType,
} from './actions/test/inspectTxpool.js'
export { mine, type MineParameters } from './actions/test/mine.js'
export { removeBlockTimestampInterval } from './actions/test/removeBlockTimestampInterval.js'
export { reset, type ResetParameters } from './actions/test/reset.js'
Expand Down

0 comments on commit 28eee5f

Please sign in to comment.