From 6cd299660fdeb27382ec7f45f0b3a55224cd0ad1 Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Wed, 13 Jan 2021 14:00:54 -0800 Subject: [PATCH] fix: export all TS definitions --- push-notifications/src/index.ts | 1 + splash-screen/src/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/push-notifications/src/index.ts b/push-notifications/src/index.ts index ab86e2aed..bc705465b 100644 --- a/push-notifications/src/index.ts +++ b/push-notifications/src/index.ts @@ -7,4 +7,5 @@ const PushNotifications = registerPlugin( {}, ); +export * from './definitions'; export { PushNotifications }; diff --git a/splash-screen/src/index.ts b/splash-screen/src/index.ts index 645e7f2af..98b918eb3 100644 --- a/splash-screen/src/index.ts +++ b/splash-screen/src/index.ts @@ -6,4 +6,5 @@ const SplashScreen = registerPlugin('SplashScreen', { web: () => import('./web').then(m => new m.SplashScreenWeb()), }); +export * from './definitions'; export { SplashScreen };