Skip to content

Commit

Permalink
chore: Don't use "export * from" to avoid required helper methods
Browse files Browse the repository at this point in the history
  • Loading branch information
oBusk committed May 13, 2020
1 parent 4e5f1fb commit 7bdbaa5
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
export * from "./constants";
export { Encoding } from "./Encoding";
export { Endianness } from "./Endianness";
export * from "./WalkableBuffer";
export { WalkableBuffer as default } from "./WalkableBuffer";
export {
BYTE,
DEFAULT_ENCODING,
DEFAULT_ENDIANNESS,
DEFAULT_INITIAL_CURSOR,
DEFAULT_SIGNED,
LONG,
LONGLONG,
OCTET,
SHORT,
} from "./constants";
export { Encoding, isEncoding } from "./Encoding";
export { Endianness, isEndianness } from "./Endianness";
export { WalkableBuffer as default, WalkableBuffer } from "./WalkableBuffer";
export { WalkableBufferOptions } from "./WalkableBufferOptions";

0 comments on commit 7bdbaa5

Please sign in to comment.