UNPKG

react-kanban-kit

Version:

A flexible and customizable Kanban board component for React applications, built with TypeScript and modern drag-and-drop functionality powered by Atlassian's pragmatic-drag-and-drop.

7 lines (5 loc) 277 B
import { default as React } from 'react'; type CallbackRef<T> = (ref: T | null) => void; type Ref<T> = React.MutableRefObject<T> | CallbackRef<T>; export default function mergeRefs<T>(refA?: Ref<T | null> | null, refB?: Ref<T | null> | null): React.RefCallback<T>; export {};