/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the available check modes for the TreeView component ([see example](slug:checkboxes_treeview)). * * The possible values are: * * `"single"`—Only one item can be checked at a time. * * `"multiple"`—Multiple items can be checked. */ export type CheckMode = "single" | "multiple";