Hi Guys,
It seems that the typescript definition is missing the ready callback -
this code is found in queue.js but you cannot call this when using typescript and need to cast to any.
ready(cb) {
if (cb) this._ready.then(() => cb(null), cb);
return this._ready;
}