UNPKG

pf-web-notification-library

Version:

A React component library for Firebase push notifications using PrimeReact Toaster

13 lines (12 loc) 377 B
import React from "react"; interface NotificationProviderProps { firebaseConfig: Record<string, string>; vapidKey: string; children: React.ReactNode; saveToken: Function; triggerApi: Function; handleClick: Function; handleVisibility: Function; } export declare const NotificationProvider: React.FC<NotificationProviderProps>; export {};