@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
14 lines (13 loc) • 757 B
TypeScript
import type { CheckedNodeStatus } from './get-all-checked-nodes/get-all-checked-nodes';
import type { RenderTreeNodePayload, TreeCssVariables, TreeFactory, TreeNodeData, TreeProps, TreeStylesNames } from './Tree';
import type { UseTreeInput, UseTreeReturnType } from './use-tree';
export { Tree } from './Tree';
export { useTree, getTreeExpandedState } from './use-tree';
export type { TreeProps, TreeStylesNames, TreeFactory, TreeCssVariables, TreeNodeData, RenderTreeNodePayload, UseTreeInput, UseTreeReturnType, CheckedNodeStatus, };
export declare namespace Tree {
type Props = TreeProps;
type StylesNames = TreeStylesNames;
type Factory = TreeFactory;
type NodeData = TreeNodeData;
type RenderNodePayload = RenderTreeNodePayload;
}