(value: T, ttl?: number)
| 21 | } |
| 22 | |
| 23 | async set(value: T, ttl?: number): Promise<void> { |
| 24 | await this.kv.set( |
| 25 | this.key, |
| 26 | JSON.stringify(value), |
| 27 | ttl |
| 28 | ? { |
| 29 | ex: ttl, |
| 30 | } |
| 31 | : undefined, |
| 32 | ) |
| 33 | } |
| 34 | } |
no outgoing calls
no test coverage detected