advanced-cropper
Version:
The core of the advanced cropper libraries family
15 lines (14 loc) • 351 B
TypeScript
interface RotatedImage {
width: number;
height: number;
angle: number;
}
type BoundingBox = BoundingBoxType;
declare enum BoundingBoxType {
Circle = "circle",
Rectangle = "rectangle"
}
interface FitToImageSettings {
stencilBoundingBox?: BoundingBox;
}
export { RotatedImage, BoundingBox, BoundingBoxType, FitToImageSettings };