UNPKG

scandit-sdk

Version:

Scandit Barcode Scanner SDK for the Web

14 lines (13 loc) 253 B
/** * A 2-dimensional point representing integer pixel coordinates from a top-left origin. */ export interface Point { /** * The x-coordinate. */ readonly x: number; /** * The y-coordinate. */ readonly y: number; }