react-native-zoom-toolkit
Version:
Most complete set of pinch to zoom utilites for React Native
8 lines • 333 B
TypeScript
import React from 'react';
import { type GalleryProps, type GalleryRefType } from './types';
type GalleryPropsWithRef<T> = GalleryProps<T> & {
reference?: React.ForwardedRef<GalleryRefType>;
};
declare const Gallery: <T>(props: GalleryPropsWithRef<T>) => JSX.Element;
export default Gallery;
//# sourceMappingURL=Gallery.d.ts.map