* Manually set cache data and refresh timestamp
(data: T)
| 44 | * Manually set cache data and refresh timestamp |
| 45 | */ |
| 46 | set(data: T) { |
| 47 | this.data = data; |
| 48 | this.dataSyncedAt = new Date(); |
| 49 | this.dataFetchPromise = null; |
| 50 | } |
| 51 | } |
no outgoing calls
no test coverage detected