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
export interface
Flow supports export interface, but importjs doesn't pick up on these statements when auto-importing.
A workaround is to use the same workaround as for older Flow versions:
interface iMyInterface { ... } export type IMyInterface = iMyInterface
It would be nice if import-js supported the shorter export interface... syntax since Flow now supports it.
export interface...
cf. facebook/flow#1131
The text was updated successfully, but these errors were encountered:
@coaxial I'd be happy to review a pull request that adds this feature and tests. I think you'd probably need to modify something around this area:
import-js/lib/findExports.js
Lines 94 to 108 in 6e88abf
Sorry, something went wrong.
No branches or pull requests
Flow supports
export interface
, but importjs doesn't pick up on these statements when auto-importing.A workaround is to use the same workaround as for older Flow versions:
It would be nice if import-js supported the shorter
export interface...
syntax since Flow now supports it.cf. facebook/flow#1131
The text was updated successfully, but these errors were encountered: