DecodeContinuouslyCallback.d.ts 228 B

123456
  1. import Exception from '../core/Exception';
  2. import Result from '../core/Result';
  3. /**
  4. * Callback format for continuous decode scan.
  5. */
  6. export declare type DecodeContinuouslyCallback = (result: Result, error?: Exception) => any;