/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents an interface that describes the Scheduler groups. */ export interface Group { /** * Defines the array of resource names to group. */ resources: string[]; /** * Specifies the orientation of the groups. */ orientation: 'horizontal' | 'vertical'; }