UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

10 lines (9 loc) 492 B
import * as factory from '../../../factory'; import type { ActionRepo } from '../../../repo/action'; import type { AssetTransactionRepo } from '../../../repo/assetTransaction'; import type { TransactionRepo } from '../../../repo/transaction'; export declare function voidTransaction(params: factory.task.IData<factory.taskName.VoidMoneyTransferTransaction>): (repos: { action: ActionRepo; assetTransaction: AssetTransactionRepo; transaction: TransactionRepo; }) => Promise<void>;