UNPKG

@syncfusion/ej2-barcode-generator

Version:

Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code.

31 lines (30 loc) 638 B
/** * Rect defines and processes rectangular regions */ export declare class Rect { /** * Sets the x-coordinate of the starting point of a rectangular region * * @default 0 */ x: number; /** * Sets the y-coordinate of the starting point of a rectangular region * * @default 0 */ y: number; /** * Sets the width of a rectangular region * * @default 0 */ width: number; /** * Sets the height of a rectangular region * * @default 0 */ height: number; constructor(x?: number, y?: number, width?: number, height?: number); }