| 26 | * Return type for the useResizer hook. |
| 27 | */ |
| 28 | export interface UseResizerResult { |
| 29 | isDragging: boolean; |
| 30 | currentSizes: number[]; |
| 31 | handlePointerDown: (dividerIndex: number) => (e: React.PointerEvent) => void; |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Hook that handles pointer-based resizing of panes. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…