this repo has no description
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 200 B view raw
1import {type ViewStyle} from 'react-native' 2 3export type ShadowStyle = Pick< 4 ViewStyle, 5 | 'shadowColor' 6 | 'shadowOpacity' 7 | 'shadowRadius' 8 | 'elevation' 9 | 'shadowOffset' 10 | 'boxShadow' 11>