react-native-zoom-toolkit
Version:
Smoothly zoom any image, video or component you want!
8 lines • 343 B
TypeScript
import React from 'react';
import { type GalleryProps, type GalleryType } from './types';
type GalleryPropsWithRef<T> = GalleryProps<T> & {
reference?: React.ForwardedRef<GalleryType>;
};
declare const Gallery: <T extends unknown>(props: GalleryPropsWithRef<T>) => JSX.Element;
export default Gallery;
//# sourceMappingURL=Gallery.d.ts.map