(key: string, value: any)
| 145 | } |
| 146 | |
| 147 | async setConfig(key: string, value: any) { |
| 148 | const newConfig = this.applyDelta(this.systemConfig, key, value); |
| 149 | await this.saveConfig(newConfig); |
| 150 | } |
| 151 | |
| 152 | requestConfig<T, S>(s: Schema<T, S>, dynamic = true): S { |
| 153 | if (!this.settings.includes(s)) { |
no test coverage detected