Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add clearNotification to typescript definitions #309

Merged
merged 1 commit into from
Nov 21, 2024
Merged
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
10 changes: 9 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,17 @@ declare namespace PhonegapPluginPush {
/**
* Tells the OS to clear all notifications from the Notification Center
* @param successHandler Is called when the api successfully clears the notifications.
* @param errorHandler Is called when the api encounters an error when attempting to clears the notifications.
* @param errorHandler Is called when the api encounters an error when attempting to clear the notifications.
*/
clearAllNotifications(successHandler: () => any, errorHandler: () => any): void

/**
* Tells the OS to clear the notification that corresponds to the id argument, from the Notification Center
* @param successHandler Is called when the api successfully clears the notification.
* @param errorHandler Is called when the api encounters an error when attempting to clear the notification.
* @param id The ID of the notification that will be cleared.
*/
clearNotification(successHandler: () => any, errorHandler: () => any, id?: number): void
}

/**
Expand Down
Loading