UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

17 lines (16 loc) 544 B
import * as factory from '../../factory'; import type { PotentialActionRepo } from '../../repo/potentialAction'; declare function fixInformAction(params: { paymentService?: Pick<factory.product.IProduct, 'availableChannel' | 'potentialAction'> | Pick<factory.service.paymentService.IService, 'availableChannel' | 'potentialAction'>; project: { id: string; }; }): (repos: { potentialAction: PotentialActionRepo; }) => Promise<{ /** * potential action ID */ id: string; }[]>; export { fixInformAction };