@cityssm/ntfy-publish
Version:
A Node package to publish notifications to an ntfy server.
51 lines (50 loc) • 1.81 kB
TypeScript
/**
* 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";