@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
18 lines (17 loc) • 687 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ToolbarProps } from '@progress/kendo-react-buttons';
/**
* The props of the TreeListToolbar component.
*/
export interface TreeListToolbarProps extends ToolbarProps {
/**
* The React elements that will be rendered inside the toolbar of the TreeList.
*/
children?: React.ReactNode;
}