react-native-tree-multi-select
Version:
A super-fast, customizable tree view component for React Native with multi-selection, checkboxes, and search filtering capabilities.
12 lines • 603 B
TypeScript
import type { TreeNode } from "../types/treeView.types";
/**
* Initialize the maps for tracking tree nodes and their parent-child relationships.
*
* This function is intended to be called once, during component initialization,
* with the initial tree data and any preselected node IDs.
*
* @param storeId - Identifier for the specific tree view store.
* @param initialData - An array of TreeNode objects that represent the initial tree structure.
*/
export declare function initializeNodeMaps<ID>(storeId: string, initialData: TreeNode<ID>[]): void;
//# sourceMappingURL=treeNode.helper.d.ts.map