@deepkit/bson
Version:
Deepkit BSON parser
17 lines (15 loc) • 752 B
text/typescript
/*
* Deepkit Framework
* Copyright (C) 2021 Deepkit UG, Marc J. Schmidt
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the MIT License.
*
* You should have received a copy of the MIT License along with this program.
*/
export { ObjectId } from './src/model';
export { deserializeBSONWithoutOptimiser, ParserV2 as Parser } from './src/bson-parser';
export { getBSONDeserializer, deserializeBSON, BSONDeserializer } from './src/bson-deserializer';
export {
stringByteLength, BSONSerializer, createBSONSizer, getBSONSizer, getBSONSerializer, bsonBinarySerializer, serializeBSON, serializeWithoutOptimiser, Writer, BSONBinarySerializer, ValueWithBSONSerializer
} from './src/bson-serializer';