@chevre/domain
Version:
Chevre Domain Library for Node.js
11 lines (10 loc) • 396 B
TypeScript
import type { AccountingReportRepo } from '../../../repo/accountingReport';
import type { ActionRepo } from '../../../repo/action';
import { INotification } from './factory';
/**
* 決済ステータス変更イベント
*/
export declare function onPaymentStatusChanged(params: INotification): (repos: {
action: ActionRepo;
accountingReport: AccountingReportRepo;
}) => Promise<void>;