UNPKG

hook-engine

Version:

Production-grade webhook engine with comprehensive adapter support, security, reliability, structured logging, and CLI tools.

9 lines (8 loc) 294 B
import type { WebhookAdapter } from "../types/adapter"; /** * PayPal webhook adapter * Supports: payments, subscriptions, disputes, billing agreements, and more * Documentation: https://developer.paypal.com/docs/api/webhooks/ */ declare const paypal: WebhookAdapter; export default paypal;