From 4d5dbd85f9dca7efbe8ec99911afa6c2ba92c203 Mon Sep 17 00:00:00 2001 From: Araz Abishov Date: Thu, 11 Aug 2022 16:14:21 +0200 Subject: [PATCH] fix: re-export AsyncStorageStatic type --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 618a74ad..d45caae4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,4 +2,6 @@ import AsyncStorage from './AsyncStorage'; export { useAsyncStorage } from './hooks'; +export type { AsyncStorageStatic } from './types'; + export default AsyncStorage;