feat(firebase): add clearAllNotifications method (#2867)

* feat(firebase): add clearAllNotifications method

Added new method clearAllNotifications()

https://github.com/arnesson/cordova-plugin-firebase/blob/master/docs/API.md#clearAllNotifications

* remove trailing whitespace
This commit is contained in:
retreatnot 2019-01-19 11:15:35 +03:00 committed by Daniel Sogl
parent 7d3ddf89ae
commit 7c46d8c2fc

View File

@ -338,4 +338,12 @@ export class Firebase extends IonicNativePlugin {
): Promise<any> {
return;
}
/**
* Clear all pending notifications from the drawer
* @return {Promise<any>}
*/
clearAllNotifications(): Promise<any> {
return;
}
}