(key: string, value: any)
| 421 | } |
| 422 | // eslint-disable-next-line @typescript-eslint/require-await, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/no-explicit-any |
| 423 | public async update(key: string, value: any): Promise<void> { |
| 424 | this.items.set(key, value); |
| 425 | } |
| 426 | |
| 427 | public keys(): readonly string[] { |
| 428 | return Object.keys(this.items); |
no outgoing calls
no test coverage detected