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
binding rename duplicate identifier
Playground Link
export function fn2 ({ prop: a, prop: b }: { prop: number }) { };
Declaration emit produces a signature with duplicate identifiers:
export declare function fn2({ prop, prop }: { prop: number; }): void;
Declaration emit produces a signature correct signature:
export declare function fn2({ prop }: { prop: number; }): void;
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
π Search Terms
binding rename duplicate identifier
π Version & Regression Information
β― Playground Link
Playground Link
π» Code
π Actual behavior
Declaration emit produces a signature with duplicate identifiers:
π Expected behavior
Declaration emit produces a signature correct signature:
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: