UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

10 lines 267 B
/** * Compare two types to see if they are loosely equal to each other without * checking structural integrity. */ export type IsLooselyEqual<A, B> = [ A ] extends [B] ? [ B ] extends [A] ? true : false : false; //# sourceMappingURL=IsLooselyEqual.d.ts.map