trufflesuite/truffle

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

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * For decoding of event topics
 *
 * @protected
 * @category ABI data location
 *
 * @packageDocumentation
 */
import * as Decode from "./decode";
export {
  /**
   * @protected
   */
  Decode
};

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

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