Skip to content

Commit 7cdb01c

Browse files
fix: lint warnings
1 parent 9597fd0 commit 7cdb01c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/change_stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Denque = require('denque');
22
import type { Readable } from 'stream';
33
import { setTimeout } from 'timers';
44

5-
import type { Binary, Document, Long, Timestamp } from './bson';
5+
import type { Binary, Document, Timestamp } from './bson';
66
import { Collection } from './collection';
77
import { CHANGE, CLOSE, END, ERROR, INIT, MORE, RESPONSE, RESUME_TOKEN_CHANGED } from './constants';
88
import type { AbstractCursorEvents, CursorStreamOptions } from './cursor/abstract_cursor';

src/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ export type { OrderedBulkOperation } from './bulk/ordered';
171171
export type { UnorderedBulkOperation } from './bulk/unordered';
172172
export type {
173173
ChangeStream,
174-
ChangeStreamAggregateRawResult,
175174
ChangeStreamCollModDocument,
176175
ChangeStreamCreateDocument,
177176
ChangeStreamCreateIndexDocument,
@@ -258,7 +257,10 @@ export type {
258257
} from './cursor/abstract_cursor';
259258
export type { InternalAbstractCursorOptions } from './cursor/abstract_cursor';
260259
export type { AggregationCursorOptions } from './cursor/aggregation_cursor';
261-
export type { ChangeStreamCursorOptions } from './cursor/change_stream_cursor';
260+
export type {
261+
ChangeStreamAggregateRawResult,
262+
ChangeStreamCursorOptions
263+
} from './cursor/change_stream_cursor';
262264
export type { DbOptions, DbPrivate } from './db';
263265
export type { AutoEncrypter, AutoEncryptionOptions, AutoEncryptionTlsOptions } from './deps';
264266
export type { Encrypter, EncrypterOptions } from './encrypter';

0 commit comments

Comments
 (0)