* Font configuration definition
| 29 | * Font configuration definition |
| 30 | */ |
| 31 | interface FontConfig { |
| 32 | key: string |
| 33 | labelKey: string // i18n key for label |
| 34 | cssFamily: string |
| 35 | platforms: ('windows' | 'macos' | 'linux')[] |
| 36 | } |
| 37 | |
| 38 | // Predefined font configurations - only system default fonts, no installation required |
| 39 | const FONT_CONFIGS: FontConfig[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected