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

Should strip this annotation #18

Open
nickretallack opened this issue Apr 8, 2020 · 0 comments
Open

Should strip this annotation #18

nickretallack opened this issue Apr 8, 2020 · 0 comments

Comments

@nickretallack
Copy link

Output:

class A {
  a: Function;
  a() {}
}

Output:

class A {
  a: Function;

  a() {}
}

It should strip the a: Function; line. If you compile the code with flow, that line gets stripped out of the output, but if you compile it with TypeScript, it acts as a duplicate declaration which overrides the original, resulting in code where a is undefined.

@zxbodya zxbodya transferred this issue from zxbodya/babel-plugin-flow-to-typescript May 2, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant