(sourceId: string)
| 6 | export const REMOVE_TARGET = 'dnd-core/REMOVE_TARGET' |
| 7 | |
| 8 | export function addSource(sourceId: string): Action<SourceIdPayload> { |
| 9 | return { |
| 10 | type: ADD_SOURCE, |
| 11 | payload: { |
| 12 | sourceId, |
| 13 | }, |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | export function addTarget(targetId: string): Action<TargetIdPayload> { |
| 18 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…