8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { ICornerPoint } from './ICornerPoint';
|
|
export interface IDetectedBarcode {
|
|
boundingBox: DOMRectReadOnly;
|
|
cornerPoints: ICornerPoint[];
|
|
format: string;
|
|
rawValue: string;
|
|
}
|