(key: K)
| 2786 | |
| 2787 | // @deprecated - Use `ContextProxy#getValue` instead. |
| 2788 | private getGlobalState<K extends keyof GlobalState>(key: K) { |
| 2789 | return this.contextProxy.getValue(key) |
| 2790 | } |
| 2791 | |
| 2792 | public async setValue<K extends keyof RooCodeSettings>(key: K, value: RooCodeSettings[K]) { |
| 2793 | await this.contextProxy.setValue(key, value) |
no test coverage detected