(key: string)
| 30 | */ |
| 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>; |
no outgoing calls
no test coverage detected