/** * Bounding box coordinates for the field location in the PDF (pixel coordinates) */ export interface EditBoundingBox { /** The left coordinate of the bounding box (pixels) */ left: number; /** The top coordinate of the bounding box (pixels) */ top: number; /** The right coordinate of the bounding box (pixels) */ right: number; /** The bottom coordinate of the bounding box (pixels) */ bottom: number; }