UNPKG

react-beautiful-dnd

Version:

Beautiful, accessible drag and drop for lists with React.js

13 lines (11 loc) 274 B
// @flow import type { DropReason } from '../../types'; export type StyleMarshal = {| collecting: () => void, dragging: () => void, dropping: (reason: DropReason) => void, resting: () => void, styleContext: string, unmount: () => void, mount: () => void, |};