* Sets a value in the context state. * * @param key - The key to set the value under. * @param value - The value to set.
(key: string, value: unknown)
| 174 | * @param value - The value to set. |
| 175 | */ |
| 176 | set(key: string, value: unknown): void { |
| 177 | this.state[key] = value; |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Retrieves all keys in the context state. |
no outgoing calls
no test coverage detected