@@ -583,7 +583,7 @@ export class GraphQLScalarType {
583583 astNode : ?ScalarTypeDefinitionNode ;
584584 extensionASTNodes : ?$ReadOnlyArray < ScalarTypeExtensionNode > ;
585585
586- constructor ( config : $ReadOnly < GraphQLScalarTypeConfig < mixed , mixed >> ) : void {
586+ constructor ( config : $ReadOnly < GraphQLScalarTypeConfig < mixed , mixed >> ) {
587587 const parseValue = config . parseValue ?? identityFunc ;
588588 this . name = config . name ;
589589 this . description = config . description ;
@@ -736,7 +736,7 @@ export class GraphQLObjectType {
736736 _fields : Thunk < GraphQLFieldMap < any , any > > ;
737737 _interfaces : Thunk < Array < GraphQLInterfaceType > > ;
738738
739- constructor(config: $ReadOnly<GraphQLObjectTypeConfig<any, any>>): void {
739+ constructor ( config : $ReadOnly < GraphQLObjectTypeConfig < any , any >> ) {
740740 this . name = config . name ;
741741 this . description = config . description ;
742742 this . isTypeOf = config . isTypeOf ;
@@ -1064,7 +1064,7 @@ export class GraphQLInterfaceType {
10641064 _fields : Thunk < GraphQLFieldMap < any , any > > ;
10651065 _interfaces : Thunk < Array < GraphQLInterfaceType > > ;
10661066
1067- constructor ( config : $ReadOnly < GraphQLInterfaceTypeConfig < any , any >> ) : void {
1067+ constructor ( config : $ReadOnly < GraphQLInterfaceTypeConfig < any , any >> ) {
10681068 this . name = config . name ;
10691069 this . description = config . description ;
10701070 this . resolveType = config . resolveType ;
@@ -1183,7 +1183,7 @@ export class GraphQLUnionType {
11831183
11841184 _types : Thunk < Array < GraphQLObjectType >> ;
11851185
1186- constructor ( config : $ReadOnly < GraphQLUnionTypeConfig < any , any >> ) : void {
1186+ constructor ( config : $ReadOnly < GraphQLUnionTypeConfig < any , any >> ) {
11871187 this . name = config . name ;
11881188 this . description = config . description ;
11891189 this . resolveType = config . resolveType ;
@@ -1301,7 +1301,7 @@ export class GraphQLEnumType /* <T> */ {
13011301 _valueLookup : Map < any /* T */ , GraphQLEnumValue > ;
13021302 _nameLookup : ObjMap < GraphQLEnumValue > ;
13031303
1304- constructor ( config : $ReadOnly < GraphQLEnumTypeConfig /* <T> */ > ) : void {
1304+ constructor ( config : $ReadOnly < GraphQLEnumTypeConfig /* <T> */ > ) {
13051305 this . name = config . name ;
13061306 this . description = config . description ;
13071307 this . extensions = config . extensions && toObjMap ( config . extensions ) ;
@@ -1523,7 +1523,7 @@ export class GraphQLInputObjectType {
15231523
15241524 _fields : Thunk < GraphQLInputFieldMap > ;
15251525
1526- constructor ( config : $ReadOnly < GraphQLInputObjectTypeConfig > ) : void {
1526+ constructor ( config : $ReadOnly < GraphQLInputObjectTypeConfig > ) {
15271527 this . name = config . name ;
15281528 this . description = config . description ;
15291529 this . extensions = config . extensions && toObjMap ( config . extensions ) ;
0 commit comments