@chevre/domain
Version:
Chevre Domain Library for Node.js
24 lines (23 loc) • 1.18 kB
TypeScript
import type { AccountingReportRepo } from '../../../repo/accountingReport';
import type { ActionRepo } from '../../../repo/action';
import type { CredentialsRepo } from '../../../repo/credentials';
import type { PaymentServiceRepo } from '../../../repo/paymentService';
import type { PaymentServiceProviderRepo } from '../../../repo/paymentServiceProvider';
import type { ProductRepo } from '../../../repo/product';
import type { ProjectRepo } from '../../../repo/project';
import type { SellerPaymentAcceptedRepo } from '../../../repo/sellerPaymentAccepted';
import type { TaskRepo } from '../../../repo/task';
import * as factory from '../../../factory';
import { Settings } from '../../../settings';
declare function voidPaymentByTask(params: factory.task.voidPayment.IData): (repos: {
action: ActionRepo;
accountingReport: AccountingReportRepo;
credentials: CredentialsRepo;
paymentAccepted: SellerPaymentAcceptedRepo;
paymentService: PaymentServiceRepo;
paymentServiceProvider: PaymentServiceProviderRepo;
product: ProductRepo;
project: ProjectRepo;
task: TaskRepo;
}, settings: Settings) => Promise<void>;
export { voidPaymentByTask };