react-native-barcode-aspen
Version:
react-native-barcode-expo with updates for aspen
16 lines (15 loc) • 464 B
TypeScript
/// <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;