Remove export *
#272
Labels
chore/refactor
Refactoring and other non-functional changes to module code
version/3.x
Issues related to the 3.0 release of this library
Expected
export *
is seen in a few files. This is usually a bad practice because we can't see what we export and we can't click to definition.Just
export
the class/const with the definition.Actual
A few files have unnecessary
export *
patterns.The text was updated successfully, but these errors were encountered: