Kill the Clipboard - SMART Health Cards Library - v0.0.1
    Preparing search index...

    Interface QRCodeConfigParams

    Configuration parameters for QR code generation.

    interface QRCodeConfigParams {
        enableChunking?: boolean;
        encodeOptions?: QREncodeParams;
        maxSingleQRSize?: number;
    }
    Index

    Properties

    enableChunking?: boolean

    Whether to support multi-chunk QR codes. Note that chunked QR codes are deprecated per SMART Health Cards specification, but supported for compatibility.

    false

    encodeOptions?: QREncodeParams

    Options passed to the underlying QR code encoder.

    maxSingleQRSize?: number

    Maximum JWS character length for single QR code. Auto-derived from errorCorrectionLevel if not provided:

    • L: 1195 characters
    • M: 927 characters
    • Q: 670 characters
    • H: 519 characters

    Based on Version 22 QR code limits from SMART Health Cards QR FAQ.