| 15 | } |
| 16 | |
| 17 | export interface Backend { |
| 18 | setup(): void |
| 19 | teardown(): void |
| 20 | connectDragSource(sourceId: any, node?: any, options?: any): Unsubscribe |
| 21 | connectDragPreview(sourceId: any, node?: any, options?: any): Unsubscribe |
| 22 | connectDropTarget(targetId: any, node?: any, options?: any): Unsubscribe |
| 23 | profile(): Record<string, number> |
| 24 | } |
| 25 | |
| 26 | export interface DragDropMonitor { |
| 27 | subscribeToStateChange( |
no outgoing calls
no test coverage detected
searching dependent graphs…