From 4de432a8afc997b3daea49db5f3b36b113f5720e Mon Sep 17 00:00:00 2001 From: Max Stoiber Date: Mon, 6 May 2019 14:04:11 +0200 Subject: [PATCH] Export component props --- src/components/Mutation.tsx | 2 +- src/components/Query.tsx | 2 +- src/components/Subscription.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Mutation.tsx b/src/components/Mutation.tsx index 4116fc8f0b..7c5a1e6efb 100644 --- a/src/components/Mutation.tsx +++ b/src/components/Mutation.tsx @@ -67,7 +67,7 @@ class MutationHandler extends Component< }; } -type MutationProps = Omit; +export type MutationProps = Omit; export const Mutation: FC = props => ( diff --git a/src/components/Query.tsx b/src/components/Query.tsx index 81a63879de..0f5e0a857c 100644 --- a/src/components/Query.tsx +++ b/src/components/Query.tsx @@ -75,7 +75,7 @@ class QueryHandler extends Component { } } -type QueryProps = Omit; +export type QueryProps = Omit; export const Query: FC = props => ( {client => } diff --git a/src/components/Subscription.tsx b/src/components/Subscription.tsx index 9a1871d886..f256045cb2 100644 --- a/src/components/Subscription.tsx +++ b/src/components/Subscription.tsx @@ -73,7 +73,7 @@ class SubscriptionHandler extends Component< } } -type SubscriptionProps = Omit; +export type SubscriptionProps = Omit; export const Subscription: FC = props => (