UNPKG

qrcode-studio

Version:

A comprehensive Capacitor plugin for QR code and barcode scanning/generation. Supports 22+ QR data types and 14+ barcode formats (EAN, UPC, Code 128, etc.), with customizable designs, analytics, and React components. Works seamlessly across web, iOS, and

23 lines (22 loc) 528 B
import { QRType } from '../definitions'; export interface FormFieldProps { label: string; name: string; type?: string; placeholder?: string; required?: boolean; pattern?: string; maxLength?: number; min?: string; max?: string; options?: Array<{ value: string; label: string; }>; helper?: string; } export declare const qrFormFields: Record<QRType, FormFieldProps[]>; export declare const qrTypeInfo: Record<QRType, { icon: string; description: string; }>;