(atom: Atom.Atom<AsyncResult.AsyncResult<A, E>>)
| 237 | * Revalidate a stale query on window focus AND on network reconnect (default on, matching |
| 238 | * tanstack refetchOnWindowFocus + refetchOnReconnect). |
| 239 | */ |
| 240 | readonly revalidateOnFocus?: boolean |
| 241 | /** |
| 242 | * Reuse references of unchanged sub-trees across refetches (default on, matching tanstack |
| 243 | * structuralSharing). Uses Effect `Equal` so decoded Schema instances share too — more effective |
| 244 | * than tanstack's `===`, but a deep compare per refetch (O(rows·fields)). Set `false` for very |
| 245 | * large or mostly-changing result sets where the compare costs more than the saved re-renders. |
| 246 | */ |
| 247 | readonly structuralSharing?: boolean |
| 248 | /** poll: re-fetch every N ms (tanstack refetchInterval). */ |
no outgoing calls
no test coverage detected
searching dependent graphs…