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
Whenever I try to import something that already has some type imported this happens:
Before import:
import User from '../User'; import type { UserType } from '../User';
After import:
import User from '../User'; import typeimport { otherImport } from '../otherImport'; { UserType } from '../User';
The desired result would be:
import User from '../User'; import type { UserType } from '../User'; import { otherImport } from '../otherImport';
EDIT: I'm using flow BTW.
The text was updated successfully, but these errors were encountered:
May be related to #86
Sorry, something went wrong.
No branches or pull requests
Whenever I try to import something that already has some type imported this happens:
Before import:
After import:
The desired result would be:
EDIT: I'm using flow BTW.
The text was updated successfully, but these errors were encountered: