UNPKG

capacitor-image-cropper

Version:

A Capacitor plugin for image cropping on Android, leveraging the UCrop library for seamless cropping functionality. iOS support is coming soon!

6 lines (5 loc) 269 B
import { WebPlugin } from '@capacitor/core'; import type { CropOptions, CropResult, ImageCropperPlugin } from './definitions'; export declare class ImageCropperWeb extends WebPlugin implements ImageCropperPlugin { crop(options: CropOptions): Promise<CropResult>; }