Open lucasbaizer2 opened 1 year ago
Behaviors defined between multiple interfaces should be supported to be intersected as one type.
For example:
interface Foo { doFoo(); } interface Bar { doBar(); } function main() { let x: Foo + Bar = // ... x.doFoo(); x.doBar(); }
Behaviors defined between multiple interfaces should be supported to be intersected as one type.
For example: