/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-react-data-tools'; /** * Represents the available selection modes. */ export type TreeListSelectableMode = TableSelectableMode; /** * Represents the TreeList selectable settings. */ export interface TreeListSelectableSettings extends TableSelectableSettings { /** * The available values are: * * `single` * * `multiple` * * @default "multiple" */ mode?: TreeListSelectableMode; }