trufflesuite/truffle

View on GitHub
packages/codec/lib/bytes/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Contains functions for dealing with raw bytestrings
 * @protected
 *
 * @packageDocumentation
 */
//Category: Common data location
//[NOT making this an actual category for now
//since there's nothing public in it]

import * as Read from "./read";
export {
  /**
   * @protected
   */
  Read
};

import * as Decode from "./decode";
export {
  /**
   * @protected
   */
  Decode
};

import * as Encode from "./encode";
export {
  /**
   * @protected
   */
  Encode
};