Files
Stackq/node_modules/barcode-detector-api-polyfill/esm/models/IDetectedBarcode.d.ts
T
2026-02-17 14:58:53 -06:00

8 lines
195 B
TypeScript

import { ICornerPoint } from './ICornerPoint';
export interface IDetectedBarcode {
boundingBox: DOMRectReadOnly;
cornerPoints: ICornerPoint[];
format: string;
rawValue: string;
}