From 8a97ed162cb5227c8a3303e60d115ea8ae5d72e3 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 6 Aug 2018 22:35:14 +0200 Subject: [PATCH] Fix types --- src/core/client/stream/mutations/index.ts | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/core/client/stream/mutations/index.ts b/src/core/client/stream/mutations/index.ts index bbe1b2b00..1b71335e7 100644 --- a/src/core/client/stream/mutations/index.ts +++ b/src/core/client/stream/mutations/index.ts @@ -1,3 +1,15 @@ -export * from "./CreateCommentMutation"; -export * from "./SetNetworkStatusMutation"; -export * from "./SetCommentIDMutation"; +export { + withCreateCommentMutation, + CreateCommentMutation, + CreateCommentInput, +} from "./CreateCommentMutation"; +export { + withSetNetworkStatusMutation, + SetNetworkStatusMutation, + SetNetworkStatusInput, +} from "./SetNetworkStatusMutation"; +export { + withSetCommentIDMutation, + SetCommentIDMutation, + SetCommentIDInput, +} from "./SetCommentIDMutation";