UNPKG

react-spring-lightbox

Version:

A flexible image gallery lightbox with native-feeling touch gestures and buttery smooth animations, built with react-spring.

8 lines (7 loc) 275 B
/// <reference types="react" /> export type ImagesListItem = Omit<React.HTMLProps<HTMLImageElement>, 'draggable' | 'onClick' | 'onDragStart' | 'ref'> & { alt: string; loading?: 'auto' | 'eager' | 'lazy'; src: string; }; export type ImagesList = ImagesListItem[];