Check whether A1 is equal to A2 or not.
A1
A2
Boolean
import {A} from 'ts-toolbelt' type test0 = A.Equals<42 | 0, 42 | 0> // true type test1 = A.Equals<{a: string}, {b: string}> // false type test3 = A.Equals<{a: string}, {readonly a: string}> // false
Check whether
A1
is equal toA2
or not.