(data: { [key: string]: any })
| 4 | get<T>(key: string): Promise<T | undefined>; |
| 5 | set<T>(key: string, value: T): Promise<void>; |
| 6 | batchSet(data: { [key: string]: any }): Promise<void>; |
| 7 | has(key: string): Promise<boolean>; |
| 8 | del(key: string): Promise<void>; |
| 9 | clear(): Promise<void>; |
no outgoing calls
no test coverage detected