(entries: Record<string, any>)
| 801 | } |
| 802 | |
| 803 | async put(entries: Record<string, any>): Promise<void> { |
| 804 | for (const [key, value] of Object.entries(entries)) { |
| 805 | this.data.set(key, value); |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | async list<T>(options?: {prefix?: string}): Promise<Map<string, T>> { |
| 810 | const result = new Map<string, T>(); |
no outgoing calls
no test coverage detected