Mirror: The spec-compliant minimum of client-side GraphQL.

fix: compatibility with typescript 5.5 and higher (#49)

* fix: compatibility with typescript 5.5 and higher

* add changeset

authored by Woky and committed by GitHub 3bfd9ca0 6bbba37a

Changed files
+6 -1
.changeset
src
+5
.changeset/bright-baboons-chew.md
··· 1 + --- 2 + '@0no-co/graphql.web': patch 3 + --- 4 + 5 + Fix compatibility with typescript 5.5 and higher
+1 -1
src/types.ts
··· 1 - export type Or<T, U> = 0 extends 1 & T ? U : T; 1 + export type Or<T, U> = void extends T ? U : T; 2 2 3 3 export type Maybe<T> = T | undefined | null; 4 4