( deferred: Deferred.Deferred<Value, Error>, complete: Complete<Key, Value, Error> )
| 85 | |
| 86 | /** @internal */ |
| 87 | export const refreshing = <Key, Value, Error>( |
| 88 | deferred: Deferred.Deferred<Value, Error>, |
| 89 | complete: Complete<Key, Value, Error> |
| 90 | ): MapValue<Key, Value, Error> => |
| 91 | Data.struct({ |
| 92 | _tag: "Refreshing" as const, |
| 93 | deferred, |
| 94 | complete |
| 95 | }) |
| 96 | |
| 97 | /** @internal */ |
| 98 | export const MapKeyTypeId = Symbol.for("effect/Cache/MapKey") |
no outgoing calls
no test coverage detected
searching dependent graphs…