You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
2 years ago
|
/** @public */
|
||
|
export declare abstract class BSONValue {
|
||
|
/** @public */
|
||
|
abstract get _bsontype(): string;
|
||
|
/** @public */
|
||
|
abstract inspect(): string;
|
||
|
/** @internal */
|
||
|
abstract toExtendedJSON(): unknown;
|
||
|
}
|
||
|
//# sourceMappingURL=bson_value.d.ts.map
|