(text: string)
| 276 | } |
| 277 | |
| 278 | private static applyStaticThemes(text: string) { |
| 279 | const formatted = formatStaticThemes(parseStaticThemes(text)); |
| 280 | ConfigManager.overrides.staticThemes = formatted; |
| 281 | ConfigManager.handleStaticThemes(); |
| 282 | DevTools.saveStaticThemes(formatted); |
| 283 | DevTools.onChange(); |
| 284 | } |
| 285 | } |
nothing calls this directly
no test coverage detected