UNPKG

thawani-nodejs

Version:

Node.js library for Thawani Payment Gateway

11 lines (10 loc) 286 B
export interface WebhookEvent { timestamp: string; signature: string; body: any; } export interface WebhookEventData { type: WebhookEventType; data: any; } export type WebhookEventType = 'payment.succeeded' | 'payment.failed' | 'refund.succeeded' | 'refund.failed';