fix(firebase): add missing decorator to clearAllNotifications (#3059)

This commit is contained in:
Timo 2019-06-17 14:52:39 +02:00 committed by Daniel Sogl
parent ad11ed21ac
commit 2fadb6b0e1

View File

@ -343,6 +343,9 @@ export class Firebase extends IonicNativePlugin {
* Clear all pending notifications from the drawer * Clear all pending notifications from the drawer
* @return {Promise<any>} * @return {Promise<any>}
*/ */
@Cordova({
platforms: ['Android']
})
clearAllNotifications(): Promise<any> { clearAllNotifications(): Promise<any> {
return; return;
} }