import {IntermediateResultManager} from "../cvr";

export interface CapturedResultBase {
  /**
   * The hash ID of the original image.
   * @see {@link IntermediateResultManager.getOriginalImage}
   * */
  originalImageHashId: string;

  /**Error code associated with the capture result.*/
  errorCode: number;

  /**Error string providing details about the error.*/
  errorMessage: string;

  /**the rotation transformation matrix of the original image relative to the rotated image.*/
  rotationTransformMatrix: Array<number>;
}
