(id: string, value: T)
| 38 | } |
| 39 | |
| 40 | set<T extends SettingValue = SettingValue>(id: string, value: T) { |
| 41 | return this.#withHost((h) => h.set<T>(id, value)); |
| 42 | } |
| 43 | |
| 44 | getGlobal<T extends SettingValue = SettingValue>(id: string) { |
| 45 | return this.#withHost((h) => h.getGlobal<T>(id)); |
no test coverage detected