UNPKG

@zxing/library

Version:

TypeScript port of ZXing multi-format 1D/2D barcode image processing library.

14 lines (13 loc) 303 B
/** * Simply encapsulates a width and height. */ export default class Dimension { private width; private height; constructor(width: number, height: number); getWidth(): number; getHeight(): number; equals(other: any): boolean; hashCode(): number; toString(): string; }