/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The image overlay configuration of the QR Code. */ export interface QRCodeOverlay { /** * Sets the overlay height in pixels. * * @default undefined */ height?: number; /** * Sets the source image for the overlay. * * Required only when `type` is set to `'image'`. */ imageUrl?: string; /** * Sets the overlay type. * * @default "image" */ type?: 'image' | 'swiss'; /** * Sets the overlay width in pixels. * * @default undefined */ width?: number; }