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
exporttype*from"./foo.ts";// Error: Multiple exports of name 'foo'export{foo}from"./foo.ts";// Error: Multiple exports of name 'foo'
It seems the rule is unaware of type exports being distinct from value exports. The export type * does not include foo which is not a type, so the export is not duplicate.