12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
import type { ApolloClient } from '@apollo/client';
|
|
import type { QueryClient } from '@tanstack/react-query';
|
|
import type RootStore from 'stores/root';
|
|
import type { TRPCPureClient } from 'trpc/types';
|
|
|
|
export type ReactionsContext = {
|
|
store: RootStore;
|
|
apolloClient: ApolloClient<object>;
|
|
queryClient: QueryClient;
|
|
trpcClient: TRPCPureClient;
|
|
};
|