@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.
26 lines (25 loc) • 669 B
TypeScript
/**
* Barcode Generator component
*/
import { TestHelper } from '@syncfusion/ej2-base/helpers/e2e';
/**
* Represents the Barcode Generator helpers.
*/
export declare class BarcodeGeneratorHelper extends TestHelper {
/**
* Specifies the ID of the Barcode Generator.
*/
id: string;
/**
* Specifies the current helper function of the Barcode Generator.
*/
wrapperFn: Function;
/**
* Constructor for creating the helper object for Barcode Generator component.
*/
constructor(id: string, wrapperFn: Function);
/**
* Gets the root element of the Barcode Generator component.
*/
getElement(): any;
}