Reputation: 21104
Is it possible to use the Typescript version of Angular with Dart?
I can't find any sort of bindings.
I understand Angular Dart is there, but you might consider this question as purely technical (and it still lacks components).
Upvotes: 1
Views: 147
Reputation: 657018
You can add Dart Angular and TypeScript Angular on the same page if the parts don't overlap, but they won't recognize each other and won't work together in any Angular-specific way.
You can use Dart-JS-Interop to communicate between TypeScript and Dart but without any specific Angular support.
So basically the answer is no.
Upvotes: 1