(id: string)
| 42 | } |
| 43 | |
| 44 | getGlobal<T extends SettingValue = SettingValue>(id: string) { |
| 45 | return this.#withHost((h) => h.getGlobal<T>(id)); |
| 46 | } |
| 47 | |
| 48 | setGlobal<T extends SettingValue = SettingValue>(id: string, value: T) { |
| 49 | return this.#withHost((h) => h.setGlobal<T>(id, value)); |
no test coverage detected