UNPKG

ngx-eagle

Version:

UI component infrastructure and Design components for mobile and desktop Angular web applications.

13 lines (11 loc) 327 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; }