UNPKG

@meijering/nestjs-molliepayment

Version:

NestJs Wrapper around Mollie Api

22 lines (21 loc) 517 B
import { PaymentsService } from './payments.service'; interface IOrder { order: { order_id: string; currency?: string; value: string; description: string; email: string; redirect: string; }; meta: { currency?: string; webhook: string; }; } export declare class PaymentsController { private readonly paymentsService; constructor(paymentsService: PaymentsService); getPayment(body: Partial<IOrder>): Promise<any>; } export {};