(event: RegistryEvent)
| 42 | } |
| 43 | |
| 44 | function notify(event: RegistryEvent) { |
| 45 | if (subscribers.length) { |
| 46 | subscribers.forEach((cb) => cb(event)); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | function findDraggableById(id: DraggableId): DraggableEntry | null { |
| 51 | return entries.draggables[id] || null; |
no outgoing calls
no test coverage detected
searching dependent graphs…