Skip to content
New issue

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

Implementing interface drops custom primitive types #47695

Closed
bpasero opened this issue Feb 2, 2022 · 2 comments
Closed

Implementing interface drops custom primitive types #47695

bpasero opened this issue Feb 2, 2022 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@bpasero
Copy link
Member

bpasero commented Feb 2, 2022

πŸ”Ž Search Terms

types, implement interface

πŸ•— Version & Regression Information

Version: 4.5.4

⏯ Playground Link

https://www.typescriptlang.org/play?#code/C4TwDgpgBA4gTgewK5gJIBMIDtgEsBmuEcUAvFFkgLYBGxA3AFCO47H4CGAxtAGIIIoAb0ZQxUGhzgAKXOgBcsRCgzY8hYgEpFANwRymAX2ZcANhwDOFqPwQBhc1ai4qYUxCprrt4aPGNDIA

πŸ’» Code

type GroupIdentifier = number;

interface Foo {
    bar(id: GroupIdentifier): void;
}

class FooClass implements Foo {
    bar(id: number): void {
        throw new Error("Method not implemented.");
    }
}

πŸ™ Actual behavior

Implementing the interface via quick fix puts in bar(id: number): void

πŸ™‚ Expected behavior

I would have expected bar(id: GroupIdentifier): void

@MartinJohns
Copy link
Contributor

Duplicate of #36761. Used search terms: implement interface alias in:title

@RyanCavanaugh RyanCavanaugh added the Duplicate An existing issue was already created label Feb 2, 2022
@typescript-bot
Copy link
Collaborator

This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

4 participants