UNPKG

vendure-plugin-nowpayments

Version:

A cryptocurrency payment gateway plugin for Vendure that integrates with NOWPayments.io, enabling your store to accept payments in Bitcoin, Ethereum, and 100+ other cryptocurrencies.

11 lines 556 B
import { Response } from 'express'; import { RequestContextService } from '@vendure/core'; import { NOWPaymentsService } from './nowpayments.service'; import { NOWPaymentsIPNData } from './types'; export declare class NOWPaymentsController { private nowPaymentsService; private requestContextService; constructor(nowPaymentsService: NOWPaymentsService, requestContextService: RequestContextService); handleIpn(body: NOWPaymentsIPNData, signature: string, res: Response): Promise<void>; } //# sourceMappingURL=nowpayments.controller.d.ts.map