Files
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;
}