UNPKG

@sentry/react-native

Version:
10 lines (6 loc) 452 B
import type { HostComponent, ViewProps } from 'react-native'; // The default export exists in the file but the linter doesn't see it import { codegenNativeComponent } from 'react-native'; // If changed to type NativeProps = ViewProps, react native codegen will fail finding the NativeProps type export interface NativeProps extends ViewProps {} export default codegenNativeComponent<NativeProps>('RNSentryReplayMask') as HostComponent<NativeProps>;