Fix remaining mentions of BSON

This commit is contained in:
Vladimir Grichina 2019-01-11 13:06:14 -08:00
parent 16f40c4c8d
commit 2f5e74136e
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ encoder.setString("str", "");
encoder.popObject();
// Get serialized data
let bson: Uint8Array = encoder.serialize();
let json: Uint8Array = encoder.serialize();
```

View File

@ -1,4 +1,4 @@
import { BSONDecoder } from './decoder';
import { BSONEncoder } from './encoder';
import { JSONDecoder } from './decoder';
import { JSONEncoder } from './encoder';
export { BSONDecoder, BSONEncoder };
export { JSONDecoder, JSONEncoder };