Skip to content

Commit

Permalink
fix alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Jan 8, 2025
1 parent 6562843 commit abec18a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions priorities.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* 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
Expand All @@ -11,7 +11,7 @@ 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
Expand All @@ -21,7 +21,7 @@ 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
Expand All @@ -31,7 +31,7 @@ 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
Expand All @@ -41,7 +41,7 @@ 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
Expand Down
10 changes: 5 additions & 5 deletions priorities.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Max Priority Options
* - Really long vibration bursts, default notification sound with a pop-over notification.
*/
*/
export const ntfyMessagePrioritiesMax = ['5', 'max', 'urgent'];
/**
* Max Priority
Expand All @@ -13,7 +13,7 @@ export const ntfyMessagePriorityMax = ntfyMessagePrioritiesMax[0];
/**
* High Priority Options
* - Long vibration burst, default notification sound with a pop-over notification.
*/
*/
export const ntfyMessagePrioritiesHigh = ['4', 'high'];
/**
* High Priority
Expand All @@ -23,7 +23,7 @@ export const ntfyMessagePriorityHigh = ntfyMessagePrioritiesHigh[0];
/**
* Default Priority Options
* - Short default vibration and sound. Default notification behavior.
*/
*/
export const ntfyMessagePrioritiesDefault = ['3', 'default'];
/**
* Default Priority
Expand All @@ -33,7 +33,7 @@ export const ntfyMessagePriorityDefault = ntfyMessagePrioritiesDefault[0];
/**
* Low Priority Options
* - No vibration or sound. Notification will not visibly show up until notification drawer is pulled down.
*/
*/
export const ntfyMessagePrioritiesLow = ['2', 'low'];
/**
* Low Priority
Expand All @@ -43,7 +43,7 @@ export const ntfyMessagePriorityLow = ntfyMessagePrioritiesLow[0];
/**
* Min Priority Options
* - No vibration or sound. The notification will be under the fold in "Other notifications".
*/
*/
export const ntfyMessagePrioritiesMin = ['1', 'min'];
/**
* Min Priority
Expand Down
12 changes: 6 additions & 6 deletions priorities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/**
* Max Priority Options
* - Really long vibration bursts, default notification sound with a pop-over notification.
*/
*/
export const ntfyMessagePrioritiesMax = ['5', 'max', 'urgent'] as const

/**
Expand All @@ -16,7 +16,7 @@ export const ntfyMessagePriorityMax = ntfyMessagePrioritiesMax[0]
/**
* High Priority Options
* - Long vibration burst, default notification sound with a pop-over notification.
*/
*/
export const ntfyMessagePrioritiesHigh = ['4', 'high'] as const

/**
Expand All @@ -28,7 +28,7 @@ export const ntfyMessagePriorityHigh = ntfyMessagePrioritiesHigh[0]
/**
* Default Priority Options
* - Short default vibration and sound. Default notification behavior.
*/
*/
export const ntfyMessagePrioritiesDefault = ['3', 'default'] as const

/**
Expand All @@ -40,7 +40,7 @@ export const ntfyMessagePriorityDefault = ntfyMessagePrioritiesDefault[0]
/**
* Low Priority Options
* - No vibration or sound. Notification will not visibly show up until notification drawer is pulled down.
*/
*/
export const ntfyMessagePrioritiesLow = ['2', 'low'] as const

/**
Expand All @@ -52,11 +52,11 @@ export const ntfyMessagePriorityLow = ntfyMessagePrioritiesLow[0]
/**
* Min Priority Options
* - No vibration or sound. The notification will be under the fold in "Other notifications".
*/
*/
export const ntfyMessagePrioritiesMin = ['1', 'min'] as const

/**
* Min Priority
* - No vibration or sound. The notification will be under the fold in "Other notifications".
*/
export const ntfyMessagePriorityMin = ntfyMessagePrioritiesMin[0]
export const ntfyMessagePriorityMin = ntfyMessagePrioritiesMin[0]

0 comments on commit abec18a

Please sign in to comment.