(atom: Atom.Atom<AsyncResult.AsyncResult<A, E>>)
| 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). */ |
| 249 | readonly refetchInterval?: number |
| 250 | /** Refresh when writes intersect the dependencies recorded by this query. */ |
| 251 | readonly live?: boolean | LiveQueryOptions |
| 252 | } |
| 253 | |
| 254 | const defaults = { staleTime: Duration.seconds(5), gcTime: Duration.minutes(5) } |
| 255 |
no test coverage detected
searching dependent graphs…