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 };