react-native-compressor
Version:
Compress Image, Video, and Audio same like Whatsapp & Auto/Manual Compression | Background Upload | Download File | Create Video Thumbnail
10 lines (6 loc) • 297 B
text/typescript
//@ts-ignore
import { ConfigPlugin, createRunOncePlugin } from '@expo/config-plugins';
const pkg = require('../../../package.json');
type Props = {};
const withCompressor: ConfigPlugin<Props> = (config: any) => config;
export default createRunOncePlugin(withCompressor, pkg.name, pkg.version);