import { CoordsInterface, PictureInterface, ProductViewItemInterface, } from '../index'; interface ProductViewImageInterface extends ProductViewItemInterface { baseWidthPercent: number; flipped: boolean; isLoading?: boolean; isTooLowQualityToPrint: boolean; picture: PictureInterface; pictureUploadId?: string; relativeStartPoint: CoordsInterface; rotation: number; zoom: number; zoomCount: number; } export default ProductViewImageInterface;