Benjamin-Dobell / react-native-markdown-view

MarkdownView for React Native
MIT License
190 stars 77 forks source link

Fix listItemNumber type definition #51

Closed lukearndt closed 3 years ago

lukearndt commented 3 years ago

The listItemNumber style applies to a <Text> component, but it was defined as a ViewStyle. This produced TypeScript errors when passing the property as part of a styles prop.

This commit changes the listItemNumber type to a TextStyle.

Benjamin-Dobell commented 3 years ago

Thanks!