We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698533f commit d811a01Copy full SHA for d811a01
src/sessions.ts
@@ -45,8 +45,11 @@ export interface ClientSessionOptions {
45
/** The default TransactionOptions to use for transactions started on this session. */
46
defaultTransactionOptions?: TransactionOptions;
47
48
- owner: symbol | AbstractCursor;
+ /** @internal */
49
+ owner?: symbol | AbstractCursor;
50
51
explicit?: boolean;
52
53
initialClusterTime?: ClusterTime;
54
}
55
@@ -71,7 +74,7 @@ class ClientSession extends EventEmitter {
71
74
clusterTime?: ClusterTime;
72
75
operationTime?: Timestamp;
73
76
explicit: boolean;
77
78
defaultTransactionOptions: TransactionOptions;
79
transaction: Transaction;
80
[kServerSession]?: ServerSession;
0 commit comments