You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/src/Foo.ts
2:3 error exported declaration 'Internal' not used within other modules import/no-unused-modules
Both the export of MyNamepsace and Internal seem to be required for the usage to compile in Bar.ts. I think this kind of usage should not result in any errors. The namespace in Foo.ts can be replaced with the module keyword and the same false positive is raised.
This seems to be in a similar area to #1964 but with a different rule.
The text was updated successfully, but these errors were encountered:
Both the export of
MyNamepsace
andInternal
seem to be required for the usage to compile inBar.ts
. I think this kind of usage should not result in any errors. Thenamespace
inFoo.ts
can be replaced with themodule
keyword and the same false positive is raised.This seems to be in a similar area to #1964 but with a different rule.
The text was updated successfully, but these errors were encountered: