(id: string)
| 34 | } |
| 35 | |
| 36 | get<T extends SettingValue = SettingValue>(id: string) { |
| 37 | return this.#withHost((h) => h.get<T>(id)); |
| 38 | } |
| 39 | |
| 40 | set<T extends SettingValue = SettingValue>(id: string, value: T) { |
| 41 | return this.#withHost((h) => h.set<T>(id, value)); |
no test coverage detected