File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export {
8787 MongoWriteConcernError ,
8888 WriteConcernErrorResult
8989} from './error' ;
90- export { TokenBucket } from './token_bucket' ;
90+ export type { TokenBucket } from './token_bucket' ;
9191export {
9292 AbstractCursor ,
9393 // Actual driver classes exported
Original file line number Diff line number Diff line change @@ -66,10 +66,10 @@ export abstract class AbstractOperation<TResult = any> {
6666 /** Specifies the time an operation will run until it throws a timeout error. */
6767 timeoutMS ?: number ;
6868
69- /** @internal Used by commitTransaction to share the retry budget across two executeOperation calls. */
69+ /** Used by commitTransaction to share the retry budget across two executeOperation calls. */
7070 maxAttempts ?: number ;
7171
72- /** @internal Tracks how many attempts were made in the last executeOperation call. */
72+ /** Tracks how many attempts were made in the last executeOperation call. */
7373 attemptsMade ?: number ;
7474
7575 private _session : ClientSession | undefined ;
You can’t perform that action at this time.
0 commit comments