We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7c0e01 commit 3887429Copy full SHA for 3887429
src/bson_value.ts
@@ -2,13 +2,17 @@ import { BSON_MAJOR_VERSION } from './constants';
2
3
/** @public */
4
export abstract class BSONValue {
5
- abstract get _bsontype(): string;
+ /** @public */
6
+ public abstract get _bsontype(): string;
7
8
/** @internal */
9
get [Symbol.for('@@mdb.bson.version')](): BSON_MAJOR_VERSION {
10
return BSON_MAJOR_VERSION;
11
}
12
- abstract inspect(): string;
13
14
+ public abstract inspect(): string;
15
+
16
+ /** @internal */
17
abstract toExtendedJSON(): unknown;
18
0 commit comments