barcode-detector
Version:
A Barcode Detection API polyfill that uses ZXing webassembly under the hood
9 lines (8 loc) • 391 B
TypeScript
declare global {
var BarcodeDetector: typeof import("./core.js").BarcodeDetector;
type BarcodeDetector = import("./core.js").BarcodeDetector;
type BarcodeFormat = import("./core.js").BarcodeFormat;
type BarcodeDetectorOptions = import("./core.js").BarcodeDetectorOptions;
type DetectedBarcode = import("./core.js").DetectedBarcode;
}
export * from "./zxing-exported.js";