UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

5 lines (4 loc) 211 B
import { LegacyRef, MutableRefObject, RefCallback } from 'react'; declare type Ref<T> = MutableRefObject<T> | LegacyRef<T>; export default function mergeRefs<T = any>(refs: Ref<T>[]): RefCallback<T>; export {};