/** * Used for justifying the text inside a #GtkLabel widget. (See also * #GtkAlignment). */ declare enum Justification { LEFT = 0, RIGHT = 1, CENTER = 2, FILL = 3 } export default Justification;