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
Minimal example to reproduce (not a sensible use case for overloads, but anyway):
export function consume(val: number): void;
export function consume(val: string): void;
export function consume(val: number | string): void {
// Do something.
}
All three consume will be annotated with error Multiple exports of name 'consume' import/export.
jonathanrdelgado, leethree, noahbenham, nhardy, 3dos and 8 more