romaine
Version:
React OpenCV Manipulation and Image Narration & Editing
22 lines • 659 B
TypeScript
/// <reference types="react" />
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): 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