UNPKG

@rangertechnologies/ngnxt

Version:

This library was used for creating dymanic UI based on the input JSON/data

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; }