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
feat(heritage): Add support for interface heritage
This enables converting interfaces extending other interfaces from typescript:
interface A extends B { ... }
To in core-types let A become an and-type of ref B and an object.
Reconstruction backwards works too.
feat(from-ts): Add conflicts to notConvertedTypes
When hoisting namespaces and dropping conflicts, add dropped types to notConvertedTypes for debug purposes