(key: string, value: T, ttl?: number)
| 208 | } |
| 209 | |
| 210 | public set<T>(key: string, value: T, ttl?: number) { |
| 211 | if (this.cache) { |
| 212 | this.cache.set(key, value, ttl) |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | public mset<T>(keys: [{ key: string; value: T; ttl: number }]) { |
| 217 | if (this.cache) { |
no outgoing calls
no test coverage detected