()
| 251 | } |
| 252 | |
| 253 | private static async getSavedStaticThemes(): Promise<string | null> { |
| 254 | return DevTools.store.get(DevTools.KEY_STATIC); |
| 255 | } |
| 256 | |
| 257 | private static saveStaticThemes(text: string): void { |
| 258 | DevTools.store.set(DevTools.KEY_STATIC, text); |
no test coverage detected