From b81927db66e51424f486dcc57e4144061a35af62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Alarc=C3=B3n=20Amador?= Date: Fri, 27 Jan 2023 13:25:23 +0100 Subject: [PATCH] fix type export bug in index file --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index ebea183..c4350e8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -20,6 +20,6 @@ if (Sovran) { } else { console.warn(LINKING_ERROR); } -export { createStore, Store, Notify, Unsubscribe } from './store'; +export { createStore, type Store, type Notify, type Unsubscribe } from './store'; export { registerBridgeStore } from './bridge'; export * from './persistor';