import type { QRCode } from '@gibme/qrcode'; declare global { interface JQuery { /** * Fetches a QR Code created with the specified options and either updates * the element in place, replaces the element, or draws it in the canvas * * Note: only , , and elements are supported at this time */ qrCode(text: string, options?: Partial): Promise; } interface Window { QRCode: typeof QRCode; } } export {};