diff --git a/src/@ionic-native/plugins/push/index.ts b/src/@ionic-native/plugins/push/index.ts index ef33da61c..758e276ab 100644 --- a/src/@ionic-native/plugins/push/index.ts +++ b/src/@ionic-native/plugins/push/index.ts @@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; import { Cordova, Plugin, CordovaInstance, checkAvailability, IonicNativePlugin } from '@ionic-native/core'; import { Observable } from 'rxjs/Observable'; -declare var window: any; +declare const window: any; export type EventResponse = RegistrationEventResponse & NotificationEventResponse & Error; @@ -196,7 +196,7 @@ export interface BrowserPushOptions { /** * URL for the push server you want to use. - * Default: http://push.api.phonegap.com/v1/push Optional. + * Default: http://push.api.phonegap.com/v1/push Optional. */ pushServiceURL?: string;