2026-04-03 16:37:23 +00:00

14 lines
312 B
TypeScript

import { BitMatrix } from "../BitMatrix";
export interface Point {
x: number;
y: number;
}
export interface QRLocation {
topRight: Point;
bottomLeft: Point;
topLeft: Point;
alignmentPattern: Point;
dimension: number;
}
export declare function locate(matrix: BitMatrix): QRLocation[];