UNPKG

react-native-tree-multi-select

Version:

Super-fast, customizable tree view component for React Native with drag-and-drop reordering, multi-selection, and search filtering.

10 lines 446 B
import { type DependencyList, type EffectCallback } from "react"; /** * Deep compare effect hook. * Ensures the effect runs on the first render and whenever dependencies deeply change. * * @param effect The effect callback function. * @param deps The dependencies array to compare deeply. */ export default function useDeepCompareEffect(effect: EffectCallback, deps: DependencyList): void; //# sourceMappingURL=useDeepCompareEffect.d.ts.map