UNPKG

react-application-core

Version:

A react-based application core for the business applications.

9 lines (8 loc) 600 B
import * as React from 'react'; import { IBarcodeWrapper, IFilterWrapper, IFontSizeWrapper, IFooterWrapper, IFormatWrapper, IHeightWrapper } from '../../definitions.interface'; import { BarcodeFormatsEnum, IGenericComponentProps } from '../../definition'; /** * @stable [10.04.2019] */ export interface IBarcodeProps extends IGenericComponentProps, IBarcodeWrapper, IHeightWrapper, IFilterWrapper<(barcode: BarcodeFormatsEnum, barcodes: BarcodeFormatsEnum[]) => boolean>, IFontSizeWrapper, IFooterWrapper<React.ReactNode | (() => React.ReactNode)>, IFormatWrapper<BarcodeFormatsEnum[]> { }