Getting started guide does:
```
Kitten.find(function (err, kittens) {
if (err) return console.error(err);
console.log(kittens)
})
```
But you get no completions for find which it seems we should be able to find.
```
Kitten.find(function (err, kittens) {
if (err) return console.error(err);
console.log(kittens)
})
```
But you get no completions for find which it seems we should be able to find.