(key: K, value: GlobalState[K])
| 2781 | |
| 2782 | // @deprecated - Use `ContextProxy#setValue` instead. |
| 2783 | private async updateGlobalState<K extends keyof GlobalState>(key: K, value: GlobalState[K]) { |
| 2784 | await this.contextProxy.setValue(key, value) |
| 2785 | } |
| 2786 | |
| 2787 | // @deprecated - Use `ContextProxy#getValue` instead. |
| 2788 | private getGlobalState<K extends keyof GlobalState>(key: K) { |
no test coverage detected