Skip to content

Commit

Permalink
doc:
Browse files Browse the repository at this point in the history
  • Loading branch information
kshramt committed Aug 13, 2023
1 parent 124df45 commit 9dab472
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ vt.test("sObject", () => {
}
});

// Handles optional parameters expectedly.
// Handles optional intersection types expectedly.
// https://github.com/type-challenges/type-challenges/issues/8617#issuecomment-1166196791
type Merge<T> = { [K in keyof T]: T[K] };
// https://github.com/type-challenges/type-challenges/blob/194e6f075a47b5927a9cc50bcf709076fa1cc2c1/utils/index.d.ts
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y
Expand Down

0 comments on commit 9dab472

Please sign in to comment.