UNPKG

bitcoin-qr

Version:

A zero-dependency, zero-framework QR code web component for Bitcoin on-chain, Lightning, and unified BIP-21 payments.

12 lines (10 loc) 330 B
import type { Components, JSX } from "../types/components"; interface BitcoinQr extends Components.BitcoinQr, HTMLElement {} export const BitcoinQr: { prototype: BitcoinQr; new (): BitcoinQr; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;