From c771abc8c3d50f6f7d56d41c7b3dca4d45dfa91f Mon Sep 17 00:00:00 2001 From: Guille Date: Sun, 17 Jul 2016 20:06:40 +0200 Subject: [PATCH] refactor(push): --- src/plugins/push.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/push.ts b/src/plugins/push.ts index 42cb47d30..6cd383154 100644 --- a/src/plugins/push.ts +++ b/src/plugins/push.ts @@ -1,4 +1,5 @@ -import {Plugin, Cordova} from './plugin'; +import { Cordova, Plugin } from './plugin'; + export type EventResponse = RegistrationEventResponse | NotificationEventResponse | Error; @@ -265,7 +266,7 @@ export interface PushOptions { } declare var PushNotification: { - new(): PushNotification + new (): PushNotification }; /**