@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
21 lines (20 loc) • 768 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { SelectionMode } from './selection-mode';
/**
* Represents the selection settings for the TreeView component.
*/
export interface SelectableSettings {
/**
* Determines whether TreeView nodes can be selected.
* @default true
*/
enabled?: boolean;
/**
* Specifies whether single or multiple nodes can be selected.
* @default 'single'
*/
mode?: SelectionMode;
}