UNPKG

ngx-image-cropper

Version:
12 lines (11 loc) 342 B
import { CropperPosition } from './cropper-position.interface'; export interface ImageCroppedEvent { base64?: string | null; blob?: Blob | null; objectUrl?: string | null; width: number; height: number; cropperPosition: CropperPosition; imagePosition: CropperPosition; offsetImagePosition?: CropperPosition; }