1mod array;
2mod dictionary;
3mod primitive;
4mod stream;
56pub use array::Array;
7pub use dictionary::Dictionary;
8pub use primitive::{Object, ObjectId};
9pub use stream::Stream;
1011// Type alias for compatibility
12pub type ObjectReference = ObjectId;