File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,11 @@ export interface ClientSessionOptions {
45
45
/** The default TransactionOptions to use for transactions started on this session. */
46
46
defaultTransactionOptions ?: TransactionOptions ;
47
47
48
- owner : symbol | AbstractCursor ;
48
+ /** @internal */
49
+ owner ?: symbol | AbstractCursor ;
50
+ /** @internal */
49
51
explicit ?: boolean ;
52
+ /** @internal */
50
53
initialClusterTime ?: ClusterTime ;
51
54
}
52
55
@@ -71,7 +74,7 @@ class ClientSession extends EventEmitter {
71
74
clusterTime ?: ClusterTime ;
72
75
operationTime ?: Timestamp ;
73
76
explicit : boolean ;
74
- owner : symbol | AbstractCursor ;
77
+ owner ? : symbol | AbstractCursor ;
75
78
defaultTransactionOptions : TransactionOptions ;
76
79
transaction : Transaction ;
77
80
[ kServerSession ] ?: ServerSession ;
You can’t perform that action at this time.
0 commit comments