Skip to content

Commit 89f23d1

Browse files
authored
Remove the normalized config export (#4227)
Closes #3853 There's only one normalizedConfig we export and these are just the type config with a few extras. I would rather than exporting all of them just stop exporting them for the time being as we don't accept them as inputs and it can still be derived by doing `ReturnType<GraphQLInterfaceType['toConfig']>` if it's really needed
1 parent 805e3c3 commit 89f23d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/type/definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,7 @@ export interface GraphQLInterfaceTypeConfig<TSource, TContext> {
11881188
extensionASTNodes?: Maybe<ReadonlyArray<InterfaceTypeExtensionNode>>;
11891189
}
11901190

1191-
export interface GraphQLInterfaceTypeNormalizedConfig<TSource, TContext>
1191+
interface GraphQLInterfaceTypeNormalizedConfig<TSource, TContext>
11921192
extends GraphQLInterfaceTypeConfig<any, any> {
11931193
interfaces: ReadonlyArray<GraphQLInterfaceType>;
11941194
fields: GraphQLFieldConfigMap<TSource, TContext>;

0 commit comments

Comments
 (0)