We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It would be great to be able to do some thing like this : type A = { a: int }; type B = {b: int} herit A;
type A = { a: int }; type B = {b: int} herit A;
So in factB = {a: int, b: int};
B = {a: int, b: int};
It could maybe replace an object model when combined with interfaces.