/**----------------------------------------------------------------------------------------- * 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 check modes for the TreeView component ([see example](https://www.telerik.com/kendo-angular-ui/components/treeview/checkboxes)). * * 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";