Merge pull request #3039 from michaelkourlas/patch-1

Change window.plugins type to interface
This commit is contained in:
Masahiro Wakame
2014-10-27 12:51:06 +09:00
+10 -8
View File
@@ -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
}
/**