@@ -254,25 +254,25 @@ export type IntrospectionNonNullTypeRef<
254
254
255
255
export type IntrospectionTypeRef =
256
256
| IntrospectionNamedTypeRef
257
- | IntrospectionListTypeRef
257
+ | IntrospectionListTypeRef < any >
258
258
| IntrospectionNonNullTypeRef <
259
- IntrospectionNamedTypeRef | IntrospectionListTypeRef
259
+ IntrospectionNamedTypeRef | IntrospectionListTypeRef < any >
260
260
> ;
261
261
262
262
export type IntrospectionOutputTypeRef =
263
263
| IntrospectionNamedTypeRef < IntrospectionOutputType >
264
- | IntrospectionListTypeRef < IntrospectionOutputTypeRef >
264
+ | IntrospectionListTypeRef < any >
265
265
| IntrospectionNonNullTypeRef <
266
266
| IntrospectionNamedTypeRef < IntrospectionOutputType >
267
- | IntrospectionListTypeRef < IntrospectionOutputTypeRef >
267
+ | IntrospectionListTypeRef < any >
268
268
> ;
269
269
270
270
export type IntrospectionInputTypeRef =
271
271
| IntrospectionNamedTypeRef < IntrospectionInputType >
272
- | IntrospectionListTypeRef < IntrospectionInputTypeRef >
272
+ | IntrospectionListTypeRef < any >
273
273
| IntrospectionNonNullTypeRef <
274
274
| IntrospectionNamedTypeRef < IntrospectionInputType >
275
- | IntrospectionListTypeRef < IntrospectionInputTypeRef >
275
+ | IntrospectionListTypeRef < any >
276
276
> ;
277
277
278
278
export type IntrospectionNamedTypeRef <
0 commit comments