We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
풀이 link
✅: 해결 🏷: 해답 열람 후 다시 풀었음 💡: 다시 볼 필요 있음
The text was updated successfully, but these errors were encountered:
💡type-level equality check
type Equal<T, U> = T extends U ? (U extends T ? true : false) : false;
!Equal
Expect<Equal<Includes<[{ a: 'A' }], { readonly a: 'A' }>, false>>, Expect<Equal<Includes<[{ readonly a: 'A' }], { a: 'A' }>, false>>,
type-level equality operator
export type Equals<X, Y> = (<T>() => T extends X ? 1 : 2) extends (<T>() => T extends Y ? 1 : 2) ? true : false;
Sorry, something went wrong.
humonnom
No branches or pull requests
풀이 link
✅: 해결
🏷: 해답 열람 후 다시 풀었음
💡: 다시 볼 필요 있음
The text was updated successfully, but these errors were encountered: