crop-image
    Preparing search index...
    CropAction:
        | { selection: CropSelection; type: "SET_SELECTION" }
        | {
            handle: DragHandle;
            point: { x: number; y: number };
            selection: CropSelection;
            type: "DRAG_START";
        }
        | { point: { x: number; y: number }; type: "DRAG_MOVE" }
        | { type: "DRAG_END" }
        | { point: { x: number; y: number }; type: "NEW_SELECTION_START" }
        | { type: "RESET" }