@danielsaraldi/react-native-blur-view
Version:
A simple blur view in react native
15 lines • 518 B
TypeScript
import type { BlurViewAndroidProps, BlurViewAndroidType } from './BlurView.android';
import type { BlurViewIosProps, BlurViewIosType } from './BlurView.ios';
/**
* @type {BlurViewType}
*
* @description Type for the color type of the overlay.
*/
export type BlurViewType = BlurViewAndroidType | BlurViewIosType;
/**
* @interface BlurViewProps
*
* @description Props for the BlurView component.
*/
export type BlurViewProps = BlurViewAndroidProps | BlurViewIosProps;
//# sourceMappingURL=BlurView.native.d.ts.map