UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

26 lines (25 loc) 675 B
/** @ignore */ export declare enum ResizeDirection { left = "left", right = "right", top = "top", bottom = "bottom" } /** @ignore */ export declare enum ResizeUnit { percent = "%", pixel = "px" } /** @ignore */ export interface IResizeProperties { appendDirection: "left" | "right" | "top" | "bottom"; borderToCalculate: "left" | "right" | "top" | "bottom"; cursor: "ew-resize" | "ns-resize"; sizeToSet: "width" | "height"; otherSizeProperty: "width" | "height"; nativeElementSizeProperty: "offsetHeight" | "offsetWidth"; } /** @ignore */ export declare const resizeDirectionHelpers: { [key: string]: IResizeProperties; };