(
q: RequestHandlerWithInput<I, A, E, R, Request, Name>
)
| 534 | |
| 535 | const observedStreamAtom = <A, E>( |
| 536 | atom: Atom.Writable<Atom.PullResult<A, E>, void>, |
| 537 | options?: AtomStreamQueryOptions |
| 538 | ): Atom.Writable<Atom.PullResult<A, E>, void> => { |
| 539 | let next = atom |
| 540 | const refetchInterval = options?.refreshEvery ?? options?.refetchInterval |
| 541 | if (refetchInterval !== undefined) next = Atom.withRefresh(refetchInterval)(next) |
no test coverage detected
searching dependent graphs…