/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TreeListComponent } from "../treelist.component"; /** * Arguments for the [`scrollBottom`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#scrollbottom) event. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/scroll-modes#endless-scrolling). * * Use this event to get the TreeListComponent instance when the user scrolls to the bottom. */ export interface ScrollBottomEvent { /** * The instance of the TreeListComponent. */ sender: TreeListComponent; }