UNPKG

@assetcrush/react-native-sdk

Version:

A simple react native library to resize image on fly

16 lines (10 loc) 264 B
import React from 'react'; import { ImageProps } from 'react-native'; export interface ImageCrushProps extends ImageProps { } declare const ImageCrush: React.FC<ImageCrushProps>; declare const setKey: (key: string) => void; export { ImageCrush, setKey };