angular-weblineindia-qrcode-scanner
Version:
An AngularJS based Barcode / QRCode scanner component.
12 lines (11 loc) • 357 B
TypeScript
import ResultPoint from './ResultPoint';
export default ResultPointCallback;
/**
* Callback which is invoked when a possible result point (significant
* point in the barcode image such as a corner) is found.
*
* @see DecodeHintType#NEED_RESULT_POINT_CALLBACK
*/
interface ResultPointCallback {
foundPossibleResultPoint(point: ResultPoint): void;
}