@microblink/blinkinput-in-browser-sdk
Version:
A simple barcode scanning library for WebAssembly-enabled browsers.
26 lines (25 loc) • 639 B
TypeScript
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
/**
* Interface representing a point in image.
*/
export interface Point {
/** X-coordinate of the point */
x: number;
/** Y-coordinate of the point */
y: number;
}
/**
* Interface representing a quadrilateral
*/
export interface Quadrilateral {
/** Top-left point of the quadrilateral */
topLeft: Point;
/** Top-right point of the quadrilateral */
topRight: Point;
/** Bottom-left point of the quadrilateral */
bottomLeft: Point;
/** Bottom-right point of the quadrilateral */
bottomRight: Point;
}