@georstat/react-native-image-gallery
Version:
React Native Image Gallery with Thumbnails
21 lines (20 loc) • 514 B
TypeScript
/// <reference types="react" />
import { IProps } from './types';
declare const defaultProps: {
hideThumbs: boolean;
resizeMode: string;
thumbColor: string;
thumbResizeMode: string;
thumbSize: number;
};
declare const ImageGallery: {
(props: IProps & typeof defaultProps): JSX.Element;
defaultProps: {
hideThumbs: boolean;
resizeMode: string;
thumbColor: string;
thumbResizeMode: string;
thumbSize: number;
};
};
export default ImageGallery;