( rt: AtomClientRuntime, q: StreamQueryFamilyDescriptor<I, A, E>, arg: I, options?: AtomStreamQueryOptions )
| 717 | ) => |
| 718 | <TData = A>( |
| 719 | arg: I | WatchSource<I> | undefined | WatchSource<Option.Option<I>>, |
| 720 | options?: any |
| 721 | ) => { |
| 722 | const view = makeQueryView<I, A, E, TData>(getAtomRt, q, arg, options) |
| 723 | |
| 724 | // 4th element is internal-only; the public `.suspense()` Promise boundary lives in makeClient. |
| 725 | const handle = { |
| 726 | awaitResult: view.awaitResult, |
| 727 | refetch: view.refetch, |
| 728 | refresh: view.refresh, |
| 729 | registry: view.registry, |
| 730 | atom: view.atom |
no test coverage detected
searching dependent graphs…