@@ -552,7 +552,7 @@ export function resolveObjMapThunk<T>(thunk: ThunkObjMap<T>): ObjMap<T> {
552552 * an object which can contain all the values you need.
553553 */
554554export interface GraphQLScalarTypeExtensions {
555- [ attributeName : string ] : unknown ;
555+ [ attributeName : string | symbol ] : unknown ;
556556}
557557
558558/**
@@ -1031,7 +1031,7 @@ export type GraphQLFieldConfigArgumentMap = ObjMap<GraphQLArgumentConfig>;
10311031 * an object which can contain all the values you need.
10321032 */
10331033export interface GraphQLArgumentExtensions {
1034- [ attributeName : string ] : unknown ;
1034+ [ attributeName : string | symbol ] : unknown ;
10351035}
10361036
10371037export interface GraphQLArgumentConfig {
@@ -1087,7 +1087,7 @@ export type GraphQLFieldMap<TSource, TContext> = ObjMap<
10871087 * an object which can contain all the values you need.
10881088 */
10891089export interface GraphQLInterfaceTypeExtensions {
1090- [ attributeName : string ] : unknown ;
1090+ [ attributeName : string | symbol ] : unknown ;
10911091}
10921092
10931093/**
@@ -1211,7 +1211,7 @@ export interface GraphQLInterfaceTypeNormalizedConfig
12111211 * an object which can contain all the values you need.
12121212 */
12131213export interface GraphQLUnionTypeExtensions {
1214- [ attributeName : string ] : unknown ;
1214+ [ attributeName : string | symbol ] : unknown ;
12151215}
12161216
12171217/**
@@ -1339,7 +1339,7 @@ interface GraphQLUnionTypeNormalizedConfig
13391339 * an object which can contain all the values you need.
13401340 */
13411341export interface GraphQLEnumTypeExtensions {
1342- [ attributeName : string ] : unknown ;
1342+ [ attributeName : string | symbol ] : unknown ;
13431343}
13441344
13451345/**
@@ -1551,7 +1551,7 @@ export type GraphQLEnumValueConfigMap /* <T> */ =
15511551 * an object which can contain all the values you need.
15521552 */
15531553export interface GraphQLEnumValueExtensions {
1554- [ attributeName : string ] : unknown ;
1554+ [ attributeName : string | symbol ] : unknown ;
15551555}
15561556
15571557export interface GraphQLEnumValueConfig {
@@ -1581,7 +1581,7 @@ export interface GraphQLEnumValue {
15811581 * an object which can contain all the values you need.
15821582 */
15831583export interface GraphQLInputObjectTypeExtensions {
1584- [ attributeName : string ] : unknown ;
1584+ [ attributeName : string | symbol ] : unknown ;
15851585}
15861586
15871587/**
@@ -1716,7 +1716,7 @@ interface GraphQLInputObjectTypeNormalizedConfig
17161716 * an object which can contain all the values you need.
17171717 */
17181718export interface GraphQLInputFieldExtensions {
1719- [ attributeName : string ] : unknown ;
1719+ [ attributeName : string | symbol ] : unknown ;
17201720}
17211721
17221722export interface GraphQLInputFieldConfig {
0 commit comments