/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the available selection modes of the TreeView component. * * The possible values are: * * `"single"`—Only one item can be selected at a time. * * `"multiple"`—Multiple items can be selected. */ export type SelectionMode = "single" | "multiple";