| 6 | } from 'react-native/Libraries/Types/CodegenTypes'; |
| 7 | |
| 8 | interface NativeProps extends ViewProps { |
| 9 | blurAmount?: WithDefault<Int32, 10>; |
| 10 | blurType?: WithDefault<'dark' | 'light' | 'xlight', 'dark'>; |
| 11 | blurRadius?: Int32; |
| 12 | downsampleFactor?: Int32; |
| 13 | overlayColor?: ColorValue; |
| 14 | enabled?: boolean; |
| 15 | autoUpdate?: boolean; |
| 16 | } |
| 17 | |
| 18 | export default codegenNativeComponent<NativeProps>('AndroidBlurView', { |
| 19 | excludedPlatforms: ['iOS'], |
nothing calls this directly
no outgoing calls
no test coverage detected