/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The scroll mode of the TreeList.
 *
 * The available values are:
 * - `none`&mdash;Scrollbars are hidden. The TreeList cannot be scrolled.
 * - `scrollable`&mdash;Displays scrollbars in TreeList.
 * - `virtual`&mdash;Enables the [virtual scroll mode](https://www.telerik.com/kendo-angular-ui/components/treelist/scroll-modes/virtual) of the TreeList.
 *
 * @example
 * ```html
 * <kendo-treelist scrollable="scrollable"></kendo-treelist>
 * ```
 */
export type ScrollMode = 'none' | 'scrollable' | 'virtual';
