/** * Represents the orientation of widgets and other objects which can * be switched between horizontal and vertical orientation on the fly, * like #GtkToolbar or #GtkGesturePan. */ declare enum Orientation { HORIZONTAL = 0, VERTICAL = 1 } export default Orientation;