Skip to content

Commit

Permalink
Regenerated with more methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Slava committed Mar 15, 2015
1 parent 1e0b9c6 commit 6e6d659
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meteor.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,19 +474,19 @@
"prototype": {
"count": {
"!doc": "Returns the number of documents that match a query.",
"!type": "fn()"
"!type": "fn() -> number"
},
"fetch": {
"!doc": "Return all matching documents as an Array.",
"!type": "fn() -> [Object]"
},
"forEach": {
"!doc": "Call `callback` once for each matching document, sequentially and synchronously.",
"!type": "fn(callback: fn(), thisArg)"
"!type": "fn(callback: fn(Object, number), thisArg)"
},
"map": {
"!doc": "Map callback over all matching documents. Returns an Array.",
"!type": "fn(callback: fn(), thisArg)"
"!type": "fn(callback: fn(Object, number), thisArg)"
},
"observe": {
"!doc": "Watch a query. Receive callbacks as the result set changes.",
Expand Down

0 comments on commit 6e6d659

Please sign in to comment.