File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -356,6 +356,8 @@ export class DropIndexOperation extends CommandOperation<Document> {
356356export type ListIndexesOptions = AbstractCursorOptions & {
357357 /** @internal */
358358 omitMaxTimeMS ?: boolean ;
359+ /** @internal */
360+ rawData ?: boolean ;
359361} ;
360362
361363/** @internal */
@@ -368,7 +370,7 @@ export class ListIndexesOperation extends CommandOperation<CursorResponse> {
368370 * This allows typescript to delete the key but will
369371 * not allow a writeConcern to be assigned as a property on options.
370372 */
371- override options : ListIndexesOptions & { writeConcern ?: never ; rawData ?: boolean } ;
373+ override options : ListIndexesOptions & { writeConcern ?: never } ;
372374 collectionNamespace : MongoDBNamespace ;
373375
374376 constructor ( collection : Collection , options ?: ListIndexesOptions ) {
You can’t perform that action at this time.
0 commit comments