Update imports

This commit is contained in:
Connor Yoh 2025-09-22 13:07:24 +01:00
parent 7dc01d9885
commit 33f8172d5d
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import { CropParametersHook } from "../../../hooks/tools/crop/useCropParameters"
import { useSelectedFiles } from "../../../contexts/file/fileHooks";
import CropAreaSelector from "./CropAreaSelector";
import { DEFAULT_CROP_AREA } from "../../../constants/cropConstants";
import { PAGE_SIZES } from "src/constants/pageSizeConstants";
import { PAGE_SIZES } from "../../../constants/pageSizeConstants";
import {
calculatePDFBounds,
PDFBounds,

View File

@ -2,7 +2,7 @@ import { BaseParameters } from '../../../types/parameters';
import { useBaseParameters, BaseParametersHook } from '../shared/useBaseParameters';
import { useCallback } from 'react';
import { Rectangle, PDFBounds, constrainCropAreaToPDF, createFullPDFCropArea, roundCropArea, isRectangle } from '../../../utils/cropCoordinates';
import { DEFAULT_CROP_AREA } from 'src/constants/cropConstants';
import { DEFAULT_CROP_AREA } from '../../../constants/cropConstants';
export interface CropParameters extends BaseParameters {
cropArea: Rectangle;