(id: string, value: T)
| 46 | } |
| 47 | |
| 48 | setGlobal<T extends SettingValue = SettingValue>(id: string, value: T) { |
| 49 | return this.#withHost((h) => h.setGlobal<T>(id, value)); |
| 50 | } |
| 51 | |
| 52 | subscribe<T extends SettingValue = SettingValue>( |
| 53 | id: string, |
no test coverage detected