mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at samuel/fancy-queue 24 lines 476 B view raw
1import {openCropper} from 'react-native-image-crop-picker' 2 3export interface Dimensions { 4 width: number 5 height: number 6} 7 8export interface PickerOpts { 9 mediaType?: string 10 multiple?: boolean 11 maxFiles?: number 12} 13 14export interface CameraOpts { 15 width: number 16 height: number 17 freeStyleCropEnabled?: boolean 18 cropperCircleOverlay?: boolean 19} 20 21export type CropperOptions = Parameters<typeof openCropper>[0] & { 22 webAspectRatio?: number 23 webCircularCrop?: boolean 24}