( source: SettingSource, value: SettingsJson | null, )
| 27 | } |
| 28 | |
| 29 | export function setCachedSettingsForSource( |
| 30 | source: SettingSource, |
| 31 | value: SettingsJson | null, |
| 32 | ): void { |
| 33 | perSourceCache.set(source, value) |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Path-keyed cache for parseSettingsFile. Both getSettingsForSource and |
no test coverage detected