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