(
style:
| Animated.Value
| Animated.AnimatedInterpolation<string | number>
| Animated.WithAnimatedObject<ViewStyle>
)
| 70 | }; |
| 71 | |
| 72 | export const getAppbarBorders = ( |
| 73 | style: |
| 74 | | Animated.Value |
| 75 | | Animated.AnimatedInterpolation<string | number> |
| 76 | | Animated.WithAnimatedObject<ViewStyle> |
| 77 | ) => { |
| 78 | const borders: Record<string, number> = {}; |
| 79 | |
| 80 | for (const property of borderStyleProperties) { |
| 81 | const value = style[property as keyof typeof style]; |
| 82 | if (value) { |
| 83 | borders[property] = value; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | return borders; |
| 88 | }; |
| 89 | |
| 90 | type BaseProps = { |
| 91 | isDark: boolean; |
no outgoing calls
no test coverage detected
searching dependent graphs…