From a4e1cc7e1bfb0688fd46bd341e142f154a7ea60c Mon Sep 17 00:00:00 2001 From: Mats Byrkjeland Date: Sun, 6 Oct 2019 16:36:26 +0200 Subject: [PATCH] Fix named export of constants through index --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 4e925018..f54a2745 100644 --- a/src/index.ts +++ b/src/index.ts @@ -159,6 +159,8 @@ export function requestNotifications( export * from './types'; +export {PERMISSIONS, RESULTS} from './constants'; + export default { PERMISSIONS, RESULTS,