interface DraggableResizeOptions {
    resizeX?: boolean;
    resizeY?: boolean;
    rtl?: boolean;
    selector?: string;
}

Properties

resizeX?: boolean

Enable resizing along the X axis.

resizeY?: boolean

Enable resizing along the Y axis.

rtl?: boolean

Modify the resizing direction to be right-to-left.

selector?: string

A CSS selector for the resize handle.