UNPKG

@progress/kendo-angular-barcodes

Version:
26 lines (25 loc) 1.05 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { BarcodeComponent } from "./barcode.component"; import { QRCodeComponent } from "./qrcode.component"; /** * Use this utility array to access all Barcode related components and directives in a standalone Angular component. */ export const KENDO_BARCODE = [ BarcodeComponent ]; /** * Use this utility array to access all QRCode related components and directives in a standalone Angular component. */ export const KENDO_QRCODE = [ QRCodeComponent ]; /** * Use this utility array to access all `@progress/kendo-angular-barcodes` related components and directives in a standalone Angular component. */ export const KENDO_BARCODES = [ ...KENDO_BARCODE, ...KENDO_QRCODE ];