Given this code :
function asyncFoo() {
return new Promise(function (fulfill, reject) {
doAsyncStuff(function(err, data) {
if(err) reject(new Error(err));
else fulfill(new Bar(data));
});
});
}
How can I document that asyncFoo
will return a Promise
that, when fulfilled will yield an instance of Bar
, and when rejected will yield an instance of Error
?
/**
* @return << Here, what do I have to write? >>
*/
function asyncFoo() { ... }