UNPKG

web-push-browser

Version:

Zero-dependency Web Push (VAPID) for browsers, workers, Deno, Bun, and Node ESM — generate VAPID keys and send Push API notifications.

14 lines (13 loc) 294 B
export interface PushNotificationOptions { sub: PushSubscription; email: string; payload: string; ttl: number; } export interface PushNotificationSubscription { endpoint: string; keys: { p256dh: string | ArrayBuffer; auth: string | ArrayBuffer; }; }