import { Data, Offsets } from '../models'; export function getOffsets(data: Data): Offsets { return { width: data.offsets.target.width, height: data.offsets.target.height, left: Math.floor(data.offsets.target.left ?? 0), top: Math.round(data.offsets.target.top ?? 0), bottom: Math.round(data.offsets.target.bottom ?? 0), right: Math.floor(data.offsets.target.right ?? 0) }; }