-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
107 lines (94 loc) · 2.71 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
declare module 'pod-notify-js' {
export default class PodNotify {
public constructor(config?: PodNotifyConfig);
public notify: Notify;
public config: PodNotifyConfig;
public clientUniques: ClientUniques;
public serviceWorkerSubscription?: PushSubscription | null;
public on: (eventName: PodEventType, callback: (params: any, ack?: any) => void) => string | undefined;
public off: (eventName: PodEventType, id: string) => boolean;
}
export class Notify {
public Permission: PushPermission;
constructor(win: Window);
create: (title: string, options: NotifyOptions) => Promise<void>;
count: () => number;
close: (tag: string) => boolean | undefined;
clear: () => boolean;
supported: () => boolean;
config: (settings?: PushParams) => PushParams;
extend: (manifest: PluginManifest) => void;
}
export interface PluginManifest {
plugin: {};
config?: PushParams;
}
export interface PushParams {
serviceWorker?: string;
fallback?: Function;
}
export interface NotifyOptions {
body?: string;
icon?: string;
link?: string;
timeout?: number;
tag?: string;
requireInteraction?: boolean;
vibrate?: boolean | Number | Number[];
silent?: boolean;
data?: any;
onClick?: Function;
onClose?: Function;
onError?: Function;
onShow?: Function;
title?: string;
}
export interface NotificationType {
prototype: Notification;
new(title: string, options?: NotificationOptions): Notification;
readonly maxActions: number;
readonly permission: NotificationPermission;
requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;
}
export interface PushPermission {
DEFAULT: string;
GRANTED: string;
DENIED: string;
request(onGranted?: Function, onDenied?: Function): void | Promise<void>;
has(): boolean;
get(): string;
}
export interface PodNotifyConfig {
socketAddress: string;
token: string;
serverName: string;
appId?: string;
handlePushNotification?: boolean;
wsConnectionWaitTime?: number;
connectionCheckTimeout?: number;
connectionCheckTimeoutThreshold?: number;
messageTtl?: number;
serverRegisteration?: boolean;
connectionRetryInterval?: number;
asyncLogging?: {
onFunction?: boolean;
onMessageReceive?: boolean;
onMessageSend?: boolean;
workerId?: number;
};
serviceWorker?: string;
}
export interface ClientUniques {
deviceId: string;
browser: string;
browserVersion: string;
browserMajorVersion: string;
os: string;
osVersion: string;
deviceName: string;
deviceType: string;
deviceVendor: string;
currentResolution: string;
}
export type PodEventType = "notification" | "connect" | "disconnect" | "reconnect" | "message" | "asyncReady" | "stateChange" | "error";
}