({
uniqueId = getUniqueId(),
dimension,
}: DraggableArgs)
| 36 | })(); |
| 37 | |
| 38 | export function getDraggableEntry({ |
| 39 | uniqueId = getUniqueId(), |
| 40 | dimension, |
| 41 | }: DraggableArgs): DraggableEntry { |
| 42 | return { |
| 43 | uniqueId, |
| 44 | descriptor: dimension.descriptor, |
| 45 | options: defaultOptions, |
| 46 | getDimension: () => dimension, |
| 47 | }; |
| 48 | } |
| 49 | |
| 50 | export const getDroppableCallbacks = ( |
| 51 | dimension: DroppableDimension, |
no outgoing calls
no test coverage detected
searching dependent graphs…