-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpriorities.d.ts
50 lines (50 loc) · 1.77 KB
/
priorities.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
/**
* Max Priority Options
* - Really long vibration bursts, default notification sound with a pop-over notification.
*/
export declare const ntfyMessagePrioritiesMax: readonly ["5", "max", "urgent"];
/**
* Max Priority
* - Really long vibration bursts, default notification sound with a pop-over notification.
*/
export declare const ntfyMessagePriorityMax: "5";
/**
* High Priority Options
* - Long vibration burst, default notification sound with a pop-over notification.
*/
export declare const ntfyMessagePrioritiesHigh: readonly ["4", "high"];
/**
* High Priority
* - Long vibration burst, default notification sound with a pop-over notification.
*/
export declare const ntfyMessagePriorityHigh: "4";
/**
* Default Priority Options
* - Short default vibration and sound. Default notification behavior.
*/
export declare const ntfyMessagePrioritiesDefault: readonly ["3", "default"];
/**
* Default Priority
* - Short default vibration and sound. Default notification behavior.
*/
export declare const ntfyMessagePriorityDefault: "3";
/**
* Low Priority Options
* - No vibration or sound. Notification will not visibly show up until notification drawer is pulled down.
*/
export declare const ntfyMessagePrioritiesLow: readonly ["2", "low"];
/**
* Low Priority
* - No vibration or sound. Notification will not visibly show up until notification drawer is pulled down.
*/
export declare const ntfyMessagePriorityLow: "2";
/**
* Min Priority Options
* - No vibration or sound. The notification will be under the fold in "Other notifications".
*/
export declare const ntfyMessagePrioritiesMin: readonly ["1", "min"];
/**
* Min Priority
* - No vibration or sound. The notification will be under the fold in "Other notifications".
*/
export declare const ntfyMessagePriorityMin: "1";