UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

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