@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.
23 lines (20 loc) • 409 B
text/typescript
import { Property, ChildProperty } from '@syncfusion/ej2-base';
/**
* Defines and processes coordinates
*/
export class Point extends ChildProperty<Point> {
/**
* Sets the x-coordinate of a position
*
* @default 0
*/
(0)
public x: number;
/**
* Sets the y-coordinate of a position
*
* @default 0
*/
(0)
public y: number;
}