UNPKG

react-native-barcode-aspen

Version:
16 lines (15 loc) 464 B
/// <reference types="react" /> declare type props = { value: string; format: string; width: number; height: number; text?: string; textSize: number; textColor: string; lineColor: string; background: string; onError?: (error: Error) => any; }; declare const Barcode: ({ value, format, width, height, text, textSize, textColor, lineColor, background, onError, }: props) => JSX.Element; export default Barcode;