Skip to content

Commit

Permalink
imports: Use new node module notation
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjD90 committed Oct 13, 2023
1 parent b0adcfd commit 6ce7899
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/cursors/n9-abstract-cursor.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Readable } from 'node:stream';

import { N9Error } from '@neo9/n9-node-utils';
import * as _ from 'lodash';
import {
Expand All @@ -14,7 +16,6 @@ import {
ReadPreference,
ReadPreferenceLike,
} from 'mongodb';
import { Readable } from 'stream';

export abstract class N9AbstractCursor<E>
extends Readable
Expand Down
3 changes: 2 additions & 1 deletion src/mongo-read-stream.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Readable, Writable } from 'node:stream';

import { N9Error } from '@neo9/n9-node-utils';
import * as _ from 'lodash';
import { Sort } from 'mongodb';
import { Readable, Writable } from 'stream';

import { N9MongoDBClient } from './client';
import { N9FindCursor } from './cursors';
Expand Down

0 comments on commit 6ce7899

Please sign in to comment.