(_getRuntime: () => Context.Context<R>, getAtomRt: () => AtomClientRuntime)
| 752 | options: Omit<CustomUndefinedInitialQueryOptions<A, CauseException<E>, TData>, "enabled"> & { mode: "optional" } |
| 753 | ): readonly [ |
| 754 | ComputedRef<AsyncResult.AsyncResult<TData, E>>, |
| 755 | ComputedRef<TData | undefined>, |
| 756 | (options?: RefetchOptions) => Effect.Effect<QueryObserverResult<TData, CauseException<E>>>, |
| 757 | UseQueryReturnType<any, any> |
| 758 | ] |
| 759 | <TData = A>( |
| 760 | arg: I | WatchSource<I>, |
| 761 | options: CustomDefinedInitialQueryOptions<A, CauseException<E>, TData> |
| 762 | ): readonly [ |
| 763 | ComputedRef<AsyncResult.AsyncResult<TData, E>>, |
| 764 | ComputedRef<TData>, |
| 765 | (options?: RefetchOptions) => Effect.Effect<QueryObserverResult<TData, CauseException<E>>>, |
| 766 | UseQueryReturnType<any, any> |
| 767 | ] |
| 768 | <TData = A>( |
| 769 | arg: I | WatchSource<I>, |
no outgoing calls
no test coverage detected
searching dependent graphs…