You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cursor/abstract_cursor.ts
+1-20
Original file line number
Diff line number
Diff line change
@@ -58,14 +58,6 @@ export const CURSOR_FLAGS = [
58
58
'partial'
59
59
]asconst;
60
60
61
-
/** @public
62
-
* @deprecated This interface is deprecated */
63
-
exportinterfaceCursorCloseOptions{
64
-
/** Bypass calling killCursors when closing the cursor. */
65
-
/** @deprecated the skipKillCursors option is deprecated */
66
-
skipKillCursors?: boolean;
67
-
}
68
-
69
61
/** @public */
70
62
exportinterfaceCursorStreamOptions{
71
63
/** A transformation method applied to each document emitted by the stream */
@@ -447,18 +439,7 @@ export abstract class AbstractCursor<
447
439
close(): Promise<void>;
448
440
/** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com./mongodb-js/nodejs-mongodb-legacy) for migration assistance */
* @deprecated options argument is deprecated. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com./mongodb-js/nodejs-mongodb-legacy) for migration assistance
0 commit comments