svelte-qrcode-image
Advanced tools
Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "svelte-qrcode-image", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "@sveltejs/adapter-auto": "next", |
import { SvelteComponentTyped } from "svelte"; | ||
import QRCodeGenerator from 'qrcode'; | ||
import type { DisplayTag } from "./util"; | ||
import type { DisplayTag, QRCodeErrorCorrectionLevel } from "./util"; | ||
declare const __propDef: { | ||
@@ -16,3 +15,3 @@ props: { | ||
width?: number | undefined; | ||
errorCorrectionLevel?: QRCodeGenerator.QRCodeErrorCorrectionLevel | undefined; | ||
errorCorrectionLevel?: QRCodeErrorCorrectionLevel | undefined; | ||
version?: number | undefined; | ||
@@ -19,0 +18,0 @@ getImageURL?: (() => string) | undefined; |
export declare type QRCodeImageGeneratorSelection = "node-qrcode"; | ||
export declare type QRCodeErrorCorrectionLevel = "L" | "M" | "Q" | "H"; | ||
export declare type DisplayTag = "img" | "canvas"; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12676