We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
export from
The following code could be combined into export { a, b } from "module"; but this rule doesn't seem to consider export.
export { a, b } from "module";
export { a } from "module"; export { b } from "module";