UNPKG

react-native-lightbox-v2

Version:

Images etc in Full Screen Lightbox Popovers for React Native

12 lines (11 loc) 539 B
import React from "react"; import { LightboxProps, IOrigin, ISpringConfig } from "./Lightbox"; import { IGestureProps } from "./hooks"; declare type OmitedLightboxProps = Omit<LightboxProps, "style" | "disabled" | "underlayColor" | "activeProps" | "renderContent" | "renderItem">; export interface LightboxOverlayProps extends OmitedLightboxProps, IGestureProps { isOpen?: boolean; origin?: IOrigin; springConfig?: ISpringConfig; } declare const LightboxOverlay: React.FC<LightboxOverlayProps>; export default LightboxOverlay;