From b5842d78323c28a6c15a543974c194766d8bfc30 Mon Sep 17 00:00:00 2001 From: Sikan He Date: Tue, 5 Dec 2023 10:36:20 -0800 Subject: [PATCH] export type + export Gql explicitly --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 6532a3d..937325b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ -export * from './types'; -export * from './define'; +export type * from './types'; +export { Gql } from './define'; export { buildGraphQLSchema, toGraphQLInputType,