ResultPointCallback.d.ts 357 B

123456789101112
  1. import ResultPoint from './ResultPoint';
  2. export default ResultPointCallback;
  3. /**
  4. * Callback which is invoked when a possible result point (significant
  5. * point in the barcode image such as a corner) is found.
  6. *
  7. * @see DecodeHintType#NEED_RESULT_POINT_CALLBACK
  8. */
  9. interface ResultPointCallback {
  10. foundPossibleResultPoint(point: ResultPoint): void;
  11. }