@mui/x-tree-view
Version:
The community edition of the MUI X Tree View components.
15 lines • 530 B
TypeScript
import { RichTreeViewState } from "../../RichTreeViewStore/index.js";
export declare const labelSelectors: {
/**
* Checks whether an item is editable.
*/
isItemEditable: (args_0: RichTreeViewState<any, any>, _itemId: string) => boolean;
/**
* Checks whether an item is being edited.
*/
isItemBeingEdited: (state: RichTreeViewState<any, any>, itemId: string | null) => boolean;
/**
* Checks whether any item is being edited.
*/
isAnyItemBeingEdited: (state: RichTreeViewState<any, any>) => boolean;
};