(types, allowedOperations)
| 52 | element: ref.current, |
| 53 | target: options.target, |
| 54 | getDropOperation(types, allowedOperations) { |
| 55 | let {draggingKeys} = globalDndState; |
| 56 | let isInternal = isInternalDropOperation(droppableCollectionRef); |
| 57 | return state.getDropOperation({ |
| 58 | target: options.target, |
| 59 | types, |
| 60 | allowedOperations, |
| 61 | isInternal, |
| 62 | draggingKeys |
| 63 | }); |
| 64 | }, |
| 65 | activateButtonRef: options.activateButtonRef |
| 66 | }); |
| 67 | } |
nothing calls this directly
no test coverage detected