/** * Describes which edge of a widget a certain feature is positioned * at, e.g. the tabs of a #GtkNotebook, the handle of a #GtkHandleBox * or the label of a #GtkScale. */ declare enum PositionType { LEFT = 0, RIGHT = 1, TOP = 2, BOTTOM = 3 } export default PositionType;