From c4c7a1f34e9a895fe2c791edfb6ff0a9f7354ab0 Mon Sep 17 00:00:00 2001 From: Maciej Treder Date: Tue, 20 Jun 2017 09:56:19 +0200 Subject: [PATCH] adding missing types in index.d.ts export UpdateEvent and PushOptions from service-worker package --- service-worker/worker/src/companion/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service-worker/worker/src/companion/index.ts b/service-worker/worker/src/companion/index.ts index 0c4562e..bcfa501 100644 --- a/service-worker/worker/src/companion/index.ts +++ b/service-worker/worker/src/companion/index.ts @@ -1,2 +1,2 @@ -export {NgServiceWorker, NgPushRegistration} from './comm'; +export { NgServiceWorker, NgPushRegistration, UpdateEvent, PushOptions } from './comm'; export {ServiceWorkerModule} from './module';