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
TypeScript has a special syntax to re-export an namespace looks like export import <name> = <binding>. Currently eslint-plugin-import is treating them as imports and applies incorrect rules.
// with import/order, the "export import" line will cause an errorimport{Point}from"./point";exportnamespaceSomeNamespace{exportimportPt=Point;}
The text was updated successfully, but these errors were encountered:
TypeScript has a special syntax to re-export an namespace looks like
export import <name> = <binding>
. Currently eslint-plugin-import is treating them as imports and applies incorrect rules.The text was updated successfully, but these errors were encountered: