diff --git a/cordova/plugins/Push.d.ts b/cordova/plugins/Push.d.ts index 9b66234867..2415aa419c 100644 --- a/cordova/plugins/Push.d.ts +++ b/cordova/plugins/Push.d.ts @@ -7,14 +7,16 @@ // Licensed under the MIT license. interface Window { - plugins: { - /** - * This plugin allows to receive push notifications. The Android implementation uses - * Google's GCM (Google Cloud Messaging) service, - * whereas the iOS version is based on Apple APNS Notifications - */ - pushNotification: PushNotification - } + plugins: Plugins +} + +interface Plugins { + /** + * This plugin allows to receive push notifications. The Android implementation uses + * Google's GCM (Google Cloud Messaging) service, + * whereas the iOS version is based on Apple APNS Notifications + */ + pushNotification: PushNotification } /**