Skip to content

Commit 3887429

Browse files
committed
fix: add access annotations
1 parent b7c0e01 commit 3887429

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/bson_value.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@ import { BSON_MAJOR_VERSION } from './constants';
22

33
/** @public */
44
export abstract class BSONValue {
5-
abstract get _bsontype(): string;
5+
/** @public */
6+
public abstract get _bsontype(): string;
67

78
/** @internal */
89
get [Symbol.for('@@mdb.bson.version')](): BSON_MAJOR_VERSION {
910
return BSON_MAJOR_VERSION;
1011
}
1112

12-
abstract inspect(): string;
13+
/** @public */
14+
public abstract inspect(): string;
15+
16+
/** @internal */
1317
abstract toExtendedJSON(): unknown;
1418
}

0 commit comments

Comments
 (0)