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
you get the error T: Type "T" has multiple definitions in this example:
import { T as OtherT } from './other.js';
export type T = OtherT & { a: string };
i think the problem is that the generator is attempting the name the imported type as T, which clashes with the type defined locally. would it be possible to name the type with the alias OtherT to prevent conflicts?
The text was updated successfully, but these errors were encountered:
you get the error
T: Type "T" has multiple definitions
in this example:i think the problem is that the generator is attempting the name the imported type as T, which clashes with the type defined locally. would it be possible to name the type with the alias
OtherT
to prevent conflicts?The text was updated successfully, but these errors were encountered: