(key: string)
| 8 | |
| 9 | export interface StorageAdapter<T> { |
| 10 | get(key: string): Promise<T | null>; |
| 11 | set(key: string, value: T): Promise<void>; |
| 12 | remove(key: string): Promise<void>; |
| 13 | list(): Promise<string[]>; |
no outgoing calls
no test coverage detected