From 40db6398321832946ed649e6d5a5a91696d6c0d6 Mon Sep 17 00:00:00 2001 From: Janic Duplessis Date: Wed, 16 Jun 2021 03:25:04 -0400 Subject: [PATCH] Export TypeKind as value (#3178) --- src/type/index.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/type/index.ts b/src/type/index.ts index d137573d0a..5686fd71f9 100644 --- a/src/type/index.ts +++ b/src/type/index.ts @@ -166,16 +166,13 @@ export { __InputValue, __EnumValue, __TypeKind, + /** "Enum" of Type Kinds */ + TypeKind, /** Meta-field definitions. */ SchemaMetaFieldDef, TypeMetaFieldDef, TypeNameMetaFieldDef, } from './introspection'; -export type { - /** "Enum" of Type Kinds */ - TypeKind, -} from './introspection'; - /** Validate GraphQL schema. */ export { validateSchema, assertValidSchema } from './validate';