(
hotkey: RegisterableHotkey,
options: Omit<FormatDisplayOptions, 'useSymbols'> = {},
)
| 135 | * @deprecated Use {@link formatForDisplay} instead with `useSymbols: false` option. |
| 136 | */ |
| 137 | export function formatWithLabels( |
| 138 | hotkey: RegisterableHotkey, |
| 139 | options: Omit<FormatDisplayOptions, 'useSymbols'> = {}, |
| 140 | ): string { |
| 141 | return formatForDisplay(hotkey, { ...options, useSymbols: false }) |
| 142 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…