(key: string)
| 2 | |
| 3 | interface CacheStorage { |
| 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>; |
no outgoing calls