(callback: (key: string, value: unknown) => unknown)
| 35 | remove(key: string): Promise<void>; |
| 36 | getAll(): Promise<Record<string, unknown>>; |
| 37 | each(callback: (key: string, value: unknown) => unknown): Promise<unknown[]>; |
| 38 | clear(): Promise<void>; |
| 39 | key(index: number, full?: boolean): Promise<string>; |
| 40 | keys(full?: boolean): Promise<string[]>; |
no outgoing calls
no test coverage detected