Hello
I'm trying to define a typedef that extends one class and implements
another interface. If possible, please advise on the syntax.
typedef Test = {
> Button,
public function foo() :Void;
} // works
typedef Test = {
> Button,
> ISelectable
} // does not work - I'd like to achieve this one..
Many thanks
Zjnue