()
| 32 | onThemeSave?: (setting: ThemeSetting) => void; |
| 33 | }; |
| 34 | function defaultInitialTheme(): ThemeSetting { |
| 35 | return getGlobalConfig().theme; |
| 36 | } |
| 37 | function defaultSaveTheme(setting: ThemeSetting): void { |
| 38 | saveGlobalConfig(current => ({ |
| 39 | ...current, |
nothing calls this directly
no test coverage detected