New TypeScript async/await feature uses ES6 promises. AngularJS uses $q service promises with slightly different interface.
$q
Is there any way to use TypeScri
I do not think you will be able to use them directly. But it should be quite easy to convert q promise into a++ promise, something like this:
function Convert(qPromise): Promise { return new Promise((resolve, reject) => { qPromise.then((result: T) => resolve(result), (e) => reject(e)); }); };