/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Defines the possible vertical alignment options of the StackLayout and GridLayout. */ export type VerticalAlign = 'top' | 'middle' | 'bottom' | 'stretch';