UNPKG

@zencemarketing/web-sdk

Version:

ZenceMarketing Web SDK for push notifications, popups, and custom event tracking.

12 lines (11 loc) 442 B
declare function showNotification(data: any): void; declare function subscribeUserPush(swFilePath: string, gaId: string): Promise<void>; declare function sendNotification(notificationData: any): Promise<any>; declare function getSubscriptionStatus(): Promise<{ subscribed: boolean; sub: object; } | { subscribed: boolean; sub: null; }>; export { subscribeUserPush, sendNotification, getSubscriptionStatus, showNotification };