It would be useful to add support for Promises for the functions with callbacks (ie. query.exec, scan.exec, etc)
It does.
Here's an example:
```
var query = Something.query('id').eq('abc123');
query.exec()
.then(function (things) {
...
})
.catch(function (err) {
...
});
Oh cool, I'll need to reflect that in the typescript definition
Most helpful comment
It does.
Here's an example:
```
var query = Something.query('id').eq('abc123');
query.exec()
.then(function (things) {
...
})
.catch(function (err) {
...
});