Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion local-notifications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ An action that can be taken when a notification is displayed.

The importance level. For more details, see the [Android Developer Docs](https://developer.android.com/reference/android/app/NotificationManager#IMPORTANCE_DEFAULT)

<code>1 | 2 | 3 | 4 | 5</code>
<code>0 | 1 | 2 | 3 | 4 | 5</code>


#### Visibility
Expand Down
2 changes: 1 addition & 1 deletion local-notifications/src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,7 @@ export enum Weekday {
* The importance level. For more details, see the [Android Developer Docs](https://developer.android.com/reference/android/app/NotificationManager#IMPORTANCE_DEFAULT)
* @since 1.0.0
*/
export type Importance = 1 | 2 | 3 | 4 | 5;
export type Importance = 0 | 1 | 2 | 3 | 4 | 5;

/**
* The notification visibility. For more details, see the [Android Developer Docs](https://developer.android.com/reference/androidx/core/app/NotificationCompat#VISIBILITY_PRIVATE)
Expand Down
2 changes: 1 addition & 1 deletion push-notifications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ Remove all native listeners for this plugin.

The importance level. For more details, see the [Android Developer Docs](https://developer.android.com/reference/android/app/NotificationManager#IMPORTANCE_DEFAULT)

<code>1 | 2 | 3 | 4 | 5</code>
<code>0 | 1 | 2 | 3 | 4 | 5</code>


#### Visibility
Expand Down
2 changes: 1 addition & 1 deletion push-notifications/src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export interface Channel {
* The importance level. For more details, see the [Android Developer Docs](https://developer.android.com/reference/android/app/NotificationManager#IMPORTANCE_DEFAULT)
* @since 1.0.0
*/
export type Importance = 1 | 2 | 3 | 4 | 5;
export type Importance = 0 | 1 | 2 | 3 | 4 | 5;

/**
* The notification visibility. For more details, see the [Android Developer Docs](https://developer.android.com/reference/androidx/core/app/NotificationCompat#VISIBILITY_PRIVATE)
Expand Down
Loading