Skip to content

Commit

Permalink
export BufferedIO and ReadWriteBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Feb 23, 2024
1 parent 99834e0 commit 5f42f0d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions index-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ export { default as NativeStreamDataProcessor } from "./src/DataProcessor/Native
export { default as ArrayBufferIO } from "./src/IO/ArrayBufferIO.js";
export { default as BlobIO } from "./src/IO/BlobIO.js";
export { default as DataStream } from "./src/IO/DataStream.js";
export { default as BufferedIO } from "./src/IO/BufferedIO.js";
export { default as IO } from "./src/IO/IO.js";

// IO/Buffer
export { default as ReadWriteBuffer } from "./src/IO/Buffer/ReadWriteBuffer.js";

// Util
export { default as BigInt } from "./src/Util/BigInt.js";
export { default as BigIntUtils } from "./src/Util/BigIntUtils.js";
Expand Down
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ export { default as ArrayBufferIO } from "./src/IO/ArrayBufferIO.js";
export { default as BlobIO } from "./src/IO/BlobIO.js";
export { default as DataStream } from "./src/IO/DataStream.js";
export { default as NodeFileIO } from "./src/IO/NodeFileIO.js";
export { default as BufferedIO } from "./src/IO/BufferedIO.js";
export { default as IO } from "./src/IO/IO.js";

// IO/Buffer
export { default as ReadWriteBuffer } from "./src/IO/Buffer/ReadWriteBuffer.js";

// Util
export { default as BigInt } from "./src/Util/BigInt.js";
export { default as BigIntUtils } from "./src/Util/BigIntUtils.js";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "armarius-io",
"version": "1.0.1",
"version": "1.1.0",
"description": "IO and compression library for Armarius",
"repository": "github:aternosorg/armarius-io",
"type": "module",
Expand Down

0 comments on commit 5f42f0d

Please sign in to comment.