Files
2026-02-17 14:58:53 -06:00

9 lines
280 B
TypeScript

import { IBarcodeDetector } from './IBarcodeDetector';
export type WindowWithBarcodeDetector = Window & typeof globalThis & {
BarcodeDetector: {
prototype: IBarcodeDetector;
new (): IBarcodeDetector;
getSupportedFormats(): Promise<string[]>;
};
};