-
-
Notifications
You must be signed in to change notification settings - Fork 520
/
Copy pathindex.ts
48 lines (42 loc) · 822 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export {
useQuery,
UseQueryOptions,
UseQueryReturn,
} from './useQuery'
export {
useLazyQuery,
UseLazyQueryReturn,
} from './useLazyQuery'
export {
useMutation,
UseMutationOptions,
UseMutationReturn,
MutateFunction,
MutateOverrideOptions,
MutateResult,
} from './useMutation'
export {
useSubscription,
UseSubscriptionOptions,
UseSubscriptionReturn,
} from './useSubscription'
export {
useResult,
UseResultReturn,
} from './useResult'
export {
useQueryLoading,
useGlobalQueryLoading,
useMutationLoading,
useGlobalMutationLoading,
useSubscriptionLoading,
useGlobalSubscriptionLoading,
} from './useLoading'
export {
DefaultApolloClient,
ApolloClients,
useApolloClient,
UseApolloClientReturn,
provideApolloClient,
provideApolloClients,
} from './useApolloClient'