Main.hx 199 B

12345678910
  1. typedef Intersection = VueConstructor & {};
  2. typedef VueConstructor = {
  3. @:overload(function(?options:Intersection):Void { })
  4. function extend():Void;
  5. };
  6. class Main {
  7. static function main() {}
  8. }