advanced-cropper
Version:
The core of the advanced cropper libraries family
14 lines (13 loc) • 414 B
TypeScript
import { CropperInteractions } from "../types/index";
declare function hasInteractions(interactions: CropperInteractions): boolean;
declare function getEmptyInteractions(): {
moveCoordinates: boolean;
resizeCoordinates: boolean;
transformImage: {
rotate: boolean;
move: boolean;
scale: boolean;
flip: boolean;
};
};
export { hasInteractions, getEmptyInteractions };