(config: Partial<Config>)
| 31 | } |
| 32 | |
| 33 | function validateConfigWrite(config: Partial<Config>): void { |
| 34 | if (config && Object.prototype.hasOwnProperty.call(config, "radioUrl")) { |
| 35 | validateRadioUrl(config.radioUrl); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | export class ConfigStore { |
| 40 | private config: Config; |
no test coverage detected