UNPKG
@fliklab/react-push-notification
Version:
latest (0.1.0)
0.1.0
Simple and easy-to-use web push notification library for React
@fliklab/react-push-notification
/
dist
/
index.d.ts
10 lines
(8 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
UsePushNotificationReturn
{
isSubscribed
:
boolean
;
error
:
string
|
null
;
subscribe
:
() =>
Promise
<
void
>;
unsubscribe
:
() =>
void
; }
declare
const
usePushNotification
:
() =>
UsePushNotificationReturn
;
export
{ usePushNotification };