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
types, implement interface
Version: 4.5.4
4.5.4
https://www.typescriptlang.org/play?#code/C4TwDgpgBA4gTgewK5gJIBMIDtgEsBmuEcUAvFFkgLYBGxA3AFCO47H4CGAxtAGIIIoAb0ZQxUGhzgAKXOgBcsRCgzY8hYgEpFANwRymAX2ZcANhwDOFqPwQBhc1ai4qYUxCprrt4aPGNDIA
type GroupIdentifier = number; interface Foo { bar(id: GroupIdentifier): void; } class FooClass implements Foo { bar(id: number): void { throw new Error("Method not implemented."); } }
Implementing the interface via quick fix puts in bar(id: number): void
bar(id: number): void
I would have expected bar(id: GroupIdentifier): void
bar(id: GroupIdentifier): void
The text was updated successfully, but these errors were encountered:
Duplicate of #36761. Used search terms: implement interface alias in:title
implement interface alias in:title
Sorry, something went wrong.
This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes.
No branches or pull requests
π Search Terms
types, implement interface
π Version & Regression Information
Version:
4.5.4
β― Playground Link
https://www.typescriptlang.org/play?#code/C4TwDgpgBA4gTgewK5gJIBMIDtgEsBmuEcUAvFFkgLYBGxA3AFCO47H4CGAxtAGIIIoAb0ZQxUGhzgAKXOgBcsRCgzY8hYgEpFANwRymAX2ZcANhwDOFqPwQBhc1ai4qYUxCprrt4aPGNDIA
π» Code
π Actual behavior
Implementing the interface via quick fix puts in
bar(id: number): void
π Expected behavior
I would have expected
bar(id: GroupIdentifier): void
The text was updated successfully, but these errors were encountered: