From e6b0250d978689c8e5ea29f82c4b917468a98f31 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Wed, 23 Aug 2017 19:38:30 -0400 Subject: [PATCH] refactor --- src/@ionic-native/plugins/push/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;