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
We have the following two files in the package:
m.ts
export interface Foo {} export function f(foo: Foo): void { }
index.ts
export {f} from 'm'; export type * from 'm';
Actual result:
While linting this code the plugin prints the following error for index.ts:
Multiple exports of name 'f' import/export
Expected result:
I don't expect the error to be thrown for the above case as the second expression in index.ts exports types, so there should be no duplicates.
Plugin version: 2.31.0
The text was updated successfully, but these errors were encountered:
Does export { f }, type * from 'm'; work?
export { f }, type * from 'm';
Sorry, something went wrong.
Such format in the typescript causes a parsing error.
then this is definitely a bug.
No branches or pull requests
We have the following two files in the package:
m.ts
index.ts
Actual result:
While linting this code the plugin prints the following error for
index.ts
:Multiple exports of name 'f' import/export
Expected result:
I don't expect the error to be thrown for the above case as the second expression in
index.ts
exports types, so there should be no duplicates.Plugin version: 2.31.0
The text was updated successfully, but these errors were encountered: