Skip to content

Commit

Permalink
fix(bson): import named __ΩBSONDeserializer not found in module (#472)
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus S. Abildskov <[email protected]>
  • Loading branch information
marcus-sa committed Oct 1, 2023
1 parent 0ed13d0 commit 138a11e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/bson/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
* You should have received a copy of the MIT License along with this program.
*/

export { ObjectId } from './src/model.js';
export { deserializeBSONWithoutOptimiser, ParserV2 as Parser } from './src/bson-parser.js';
export { getBSONDeserializer, deserializeBSON, BSONDeserializer } from './src/bson-deserializer.js';
export {
stringByteLength, BSONSerializer, createBSONSizer, getBSONSizer, getBSONSerializer, bsonBinarySerializer, serializeBSON, serializeWithoutOptimiser, Writer, BSONBinarySerializer, ValueWithBSONSerializer
} from './src/bson-serializer.js';
export * from './src/model.js';
export * from './src/bson-parser.js';
export { ParserV2 as Parser } from './src/bson-parser.js';
export * from './src/bson-deserializer.js';
export * from './src/bson-serializer.js';

0 comments on commit 138a11e

Please sign in to comment.