( direction: 'horizontal' | 'vertical' )
| 55 | * Get keyboard instructions for divider |
| 56 | */ |
| 57 | export function getKeyboardInstructions( |
| 58 | direction: 'horizontal' | 'vertical' |
| 59 | ): string { |
| 60 | const keys = |
| 61 | direction === 'horizontal' |
| 62 | ? 'left and right arrow keys' |
| 63 | : 'up and down arrow keys'; |
| 64 | |
| 65 | return `Use ${keys} to resize. Hold Shift for larger steps. Press Home or End to minimize or maximize.`; |
| 66 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…