| 24 | export const UI_COMMAND_EXEC = 'UI_COMMAND_EXEC'; |
| 25 | |
| 26 | export interface UIFontSizeSetAction { |
| 27 | type: typeof UI_FONT_SIZE_SET; |
| 28 | value: number; |
| 29 | } |
| 30 | export interface UIFontSizeIncrAction { |
| 31 | type: typeof UI_FONT_SIZE_INCR; |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected