(key: string, value: unknown)
| 31 | export interface StorageInterface { |
| 32 | get(key: string): Promise<unknown>; |
| 33 | set(key: string, value: unknown): Promise<unknown>; |
| 34 | update(key: string, value: unknown): Promise<unknown>; |
| 35 | remove(key: string): Promise<void>; |
| 36 | getAll(): Promise<Record<string, unknown>>; |
no outgoing calls
no test coverage detected