Merge pull request #26594 from kjin/mongodb-t

[mongodb] use T as type rather than value
This commit is contained in:
Nathan Shively-Sanders 2018-06-18 13:01:24 -07:00 committed by GitHub
commit da8f5dedee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1252,7 +1252,7 @@ export class Cursor<T = Default> extends Readable {
/** http://mongodb.github.io/node-mongodb-native/3.0/api/Cursor.html#limit */
limit(value: number): Cursor<T>;
/** http://mongodb.github.io/node-mongodb-native/3.0/api/Cursor.html#map */
map<U>(transform: (T) => U): Cursor<U>;
map<U>(transform: (document: T) => U): Cursor<U>;
/** http://mongodb.github.io/node-mongodb-native/3.0/api/Cursor.html#max */
max(max: number): Cursor<T>;
/** http://mongodb.github.io/node-mongodb-native/3.0/api/Cursor.html#maxAwaitTimeMS */