We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
type XOR<bool1, bool2> = TODO
type-level-typescript-workshop/02-assignability-and-conditional-types/exercises.ts
Line 140 in a2234be
type-level-typescript-workshop/02-assignability-and-conditional-types/solution.ts
Line 131 in a2234be
type XOR<bool1, bool2> = bool1 extends bool2? false: true;