| 8 | } from './types'; |
| 9 | |
| 10 | export interface MessagePreset { |
| 11 | dragHandleUsageInstructions: string; |
| 12 | onDragStart: (start: DragStart) => string; |
| 13 | onDragUpdate: (update: DragUpdate) => string; |
| 14 | onDragEnd: (result: DropResult) => string; |
| 15 | } |
| 16 | |
| 17 | const dragHandleUsageInstructions = ` |
| 18 | Press space bar to start a drag. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…