UNPKG

@trasherdk/svelte-qrcode

Version:

QR Code generator component for Svelte

21 lines (20 loc) 474 B
export interface Props { content?: string; size?: string; padding?: string; color?: string; bgcolor?: string; responsive?: string; errorCorrection?: string; } declare const Qrcode: import("svelte").Component<{ content?: string; size?: string; padding?: string; color?: string; bgcolor?: string; responsive?: string; errorCorrection?: string; }, {}, "">; type Qrcode = ReturnType<typeof Qrcode>; export default Qrcode;