UNPKG

@meijering/nestjs-molliepayment

Version:

NestJs Wrapper around Mollie Api

11 lines (10 loc) 281 B
import { WebhookService } from './webhook.service'; interface IWebhook { id: string; } export declare class WebhookController { private readonly webhookService; constructor(webhookService: WebhookService); checkPayment(params: IWebhook): Promise<any>; } export {};