UNPKG

cashbill

Version:

A TypeScript library for making payments through CashBill gateway.

9 lines (8 loc) 456 B
import { LibModule } from '../../utils'; import { NotificationRequest } from './interfaces/notification-request.interface'; import { Notification } from './interfaces/notification.interface'; export declare class NotificationModule extends LibModule { consume(request: NotificationRequest): Notification; protected verify(request: NotificationRequest): boolean; protected mapRequestToNotification(request: NotificationRequest): Notification; }