@@ -254,25 +254,25 @@ export type IntrospectionNonNullTypeRef<
254254
255255export type IntrospectionTypeRef =
256256 | IntrospectionNamedTypeRef
257- | IntrospectionListTypeRef
257+ | IntrospectionListTypeRef < any >
258258 | IntrospectionNonNullTypeRef <
259- IntrospectionNamedTypeRef | IntrospectionListTypeRef
259+ IntrospectionNamedTypeRef | IntrospectionListTypeRef < any >
260260 > ;
261261
262262export type IntrospectionOutputTypeRef =
263263 | IntrospectionNamedTypeRef < IntrospectionOutputType >
264- | IntrospectionListTypeRef < IntrospectionOutputTypeRef >
264+ | IntrospectionListTypeRef < any >
265265 | IntrospectionNonNullTypeRef <
266266 | IntrospectionNamedTypeRef < IntrospectionOutputType >
267- | IntrospectionListTypeRef < IntrospectionOutputTypeRef >
267+ | IntrospectionListTypeRef < any >
268268 > ;
269269
270270export type IntrospectionInputTypeRef =
271271 | IntrospectionNamedTypeRef < IntrospectionInputType >
272- | IntrospectionListTypeRef < IntrospectionInputTypeRef >
272+ | IntrospectionListTypeRef < any >
273273 | IntrospectionNonNullTypeRef <
274274 | IntrospectionNamedTypeRef < IntrospectionInputType >
275- | IntrospectionListTypeRef < IntrospectionInputTypeRef >
275+ | IntrospectionListTypeRef < any >
276276 > ;
277277
278278export type IntrospectionNamedTypeRef <
0 commit comments