From aa3087cb41ed0426b331e4c12662e87eb2d9b165 Mon Sep 17 00:00:00 2001 From: Lakshya Munjal Date: Wed, 19 Apr 2023 11:39:01 +0530 Subject: [PATCH] fix(type/view): add 'IViewProps' export to index file --- src/components/basic/View/index.tsx | 1 + src/components/basic/index.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/basic/View/index.tsx b/src/components/basic/View/index.tsx index 28ff34146..0f1607512 100644 --- a/src/components/basic/View/index.tsx +++ b/src/components/basic/View/index.tsx @@ -1 +1,2 @@ export { View } from './View'; +export { IViewProps } from './types'; diff --git a/src/components/basic/index.tsx b/src/components/basic/index.tsx index 011a02507..c70680808 100644 --- a/src/components/basic/index.tsx +++ b/src/components/basic/index.tsx @@ -5,3 +5,4 @@ export { StatusBar } from './StatusBar'; export { FlatList } from './FlatList'; export { SectionList } from './SectionList'; export { KeyboardAvoidingView } from './KeyboardAvoidingView'; +export type { IViewProps } from './View';