typing.ts 146 Bytes
import type Cropper from 'cropperjs';

export interface CropendResult {
  imgBase64: string;
  imgInfo: Cropper.Data;
}

export type { Cropper };