diff --git a/src/change_stream.ts b/src/change_stream.ts index 2e89355359..45deb2b97f 100644 --- a/src/change_stream.ts +++ b/src/change_stream.ts @@ -189,7 +189,9 @@ export type ChangeStreamEvents = { * Creates a new Change Stream instance. Normally created using {@link Collection#watch|Collection.watch()}. * @public */ -export class ChangeStream extends TypedEventEmitter { +export class ChangeStream extends TypedEventEmitter< + ChangeStreamEvents +> { pipeline: Document[]; options: ChangeStreamOptions; parent: MongoClient | Db | Collection;