UNPKG

@progress/kendo-angular-treeview

Version:
13 lines (12 loc) 633 B
/**----------------------------------------------------------------------------------------- * 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 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";