dart-archive / js_facade_gen

Generates package:js Javascript interop facades for arbitrary TypeScript libraries
Apache License 2.0
162 stars 29 forks source link

Support ArrayLike #28

Open bergwerf opened 7 years ago

bergwerf commented 7 years ago

I tried to convert the ts definition of threejs from definitelytyped. I encountered a lot of warnings with ArrayLike<T> which is used in their definitions and translated as ArrayLike<T> in Dart (I think this should be a List or Iterable).