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