react-native-zoom-toolkit
Version:
Smoothly zoom any image, video or component you want!
13 lines • 525 B
TypeScript
import React from 'react';
import type { GalleryTransitionCallback } from './types';
type GalleryItemProps = {
item: any;
index: number;
zIndex: number;
vertical: boolean;
renderItem: (item: any, index: number) => React.ReactElement;
customTransition?: GalleryTransitionCallback;
};
declare const _default: React.MemoExoticComponent<({ index, zIndex, item, vertical, renderItem, customTransition, }: GalleryItemProps) => JSX.Element>;
export default _default;
//# sourceMappingURL=GalleryItem.d.ts.map