File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ export class GraphQLObjectType<TSource = any, TContext = any> {
354354 astNode : Maybe < ObjectTypeDefinitionNode > ;
355355 extensionASTNodes : ReadonlyArray < ObjectTypeExtensionNode > ;
356356 constructor ( config : Readonly < GraphQLObjectTypeConfig < TSource , TContext > > ) ;
357- getFields ( ) : GraphQLFieldMap < any , TContext > ;
357+ getFields ( ) : GraphQLFieldMap < TSource , TContext > ;
358358 getInterfaces ( ) : Array < GraphQLInterfaceType > ;
359359 toConfig ( ) : GraphQLObjectTypeConfig < any , any > & {
360360 interfaces : Array < GraphQLInterfaceType > ;
@@ -795,7 +795,7 @@ export interface GraphQLInputObjectTypeConfig {
795795 * an object which can contain all the values you need.
796796 */
797797export interface GraphQLInputFieldExtensions {
798- [ attributeName : string ] : any ;
798+ [ attributeName : string ] : unknown ;
799799}
800800export interface GraphQLInputFieldConfig {
801801 description ?: Maybe < string > ;
You can’t perform that action at this time.
0 commit comments