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
AssertEqual
never
const typing: AssertEqual<never, never> = true // Type 'boolean' is not assignable to type 'never'.ts(2322)
Need to be fixed.
The text was updated successfully, but these errors were encountered:
Solution: use [T] extends [Expected] instead of T extends Expected in generic.
[T] extends [Expected]
T extends Expected
See:
Sorry, something went wrong.
support never for type testing (#37)
4a9462a
No branches or pull requests
Need to be fixed.
The text was updated successfully, but these errors were encountered: