(this: AtomContext, atom: Atom<A>)
| 160 | export interface AtomContext { |
| 161 | <A>(atom: Atom<A>): A |
| 162 | get<A>(this: AtomContext, atom: Atom<A>): A |
| 163 | result<A, E>(this: AtomContext, atom: Atom<AsyncResult.AsyncResult<A, E>>, options?: { |
| 164 | readonly suspendOnWaiting?: boolean | undefined |
| 165 | }): Effect.Effect<A, E> |
no outgoing calls
no test coverage detected