romaine
Version:
React OpenCV Manipulation and Image Narration & Editing
21 lines • 634 B
TypeScript
import T from "prop-types";
import { CropPointProps } from "./CropPoint";
export interface CropPointsProps extends CropPointProps {
previewDims: {
ratio: number;
width: number;
height: number;
};
}
declare const CropPoints: {
({ previewDims, ...otherProps }: CropPointsProps): import("react/jsx-runtime").JSX.Element;
propTypes: {
previewDims: T.Requireable<T.InferProps<{
ratio: T.Requireable<number>;
width: T.Requireable<number>;
height: T.Requireable<number>;
}>>;
};
};
export { CropPoints };
//# sourceMappingURL=CropPoints.d.ts.map