···11+---
22+'@0no-co/graphql.web': patch
33+---
44+55+Fix compatibility with typescript 5.5 and higher
+1-1
src/types.ts
···11-export type Or<T, U> = 0 extends 1 & T ? U : T;
11+export type Or<T, U> = void extends T ? U : T;
2233export type Maybe<T> = T | undefined | null;
44