( scoped: Effect.Effect<Effect.Effect<Value, Error, Scope.Scope>>, complete: Complete<Key, Value, Error> )
| 133 | |
| 134 | /** @internal */ |
| 135 | export const refreshing = <Key, Value, Error = never>( |
| 136 | scoped: Effect.Effect<Effect.Effect<Value, Error, Scope.Scope>>, |
| 137 | complete: Complete<Key, Value, Error> |
| 138 | ): Refreshing<Key, Value, Error> => |
| 139 | Data.struct({ |
| 140 | _tag: "Refreshing", |
| 141 | scoped, |
| 142 | complete |
| 143 | }) |
| 144 | |
| 145 | /** @internal */ |
| 146 | export const toScoped = <Key, Value, Error = never>( |
no outgoing calls
no test coverage detected
searching dependent graphs…