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
Sample code:
interface Base { foo(p1: string, p2: string): void; } interface T extends Base { foo(p1: "p1" | "p2", p2: string): void; // Pass } interface T2 extends Base { foo(p1: "p3", p2: string): void; // Error: Specialized overload signature is not assignable to any non-specialized signature }
Maybe related: #6272, however this seems stricter instead of looser
The text was updated successfully, but these errors were encountered:
This is unrelated to #6272, but we determined offline that we should fix this. #6278 has the fix.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Sample code:
Maybe related: #6272, however this seems stricter instead of looser
The text was updated successfully, but these errors were encountered: