Skip to content

Commit

Permalink
Add tsdoc for useBackgroundQuery result
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jul 5, 2024
1 parent 8c052a5 commit d502317
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/react/hooks/useBackgroundQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ export type UseBackgroundQueryResult<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
> = {
/** {@inheritDoc @apollo/client!ObservableQuery#subscribeToMore:member(1)} */
subscribeToMore: SubscribeToMoreFunction<TData, TVariables>;
/** {@inheritDoc @apollo/client!ObservableQuery#fetchMore:member(1)} */
fetchMore: FetchMoreFunction<TData, TVariables>;
/** {@inheritDoc @apollo/client!ObservableQuery#refetch:member(1)} */
refetch: RefetchFunction<TData, TVariables>;
};

Expand Down

0 comments on commit d502317

Please sign in to comment.