diff options
author | Jacob Evans <jacob@dekz.net> | 2018-02-07 03:59:47 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-02-07 05:17:14 +0800 |
commit | e17ace397cd5d0f4b24d3af868eef8ae55889456 (patch) | |
tree | 19293a228c6efbd34e8e4e56e85b3a48683d921c /packages/0x.js/src/index.ts | |
parent | df8de7ff517ba1386671c658d402fa7436ff4f74 (diff) | |
download | dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.gz dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.bz2 dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.lz dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.xz dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.zst dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.zip |
Move BlockParamLiteral to shared types package
Also BlockParam
Diffstat (limited to 'packages/0x.js/src/index.ts')
-rw-r--r-- | packages/0x.js/src/index.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/0x.js/src/index.ts b/packages/0x.js/src/index.ts index 1e12ab4b8..c3c8854da 100644 --- a/packages/0x.js/src/index.ts +++ b/packages/0x.js/src/index.ts @@ -42,6 +42,12 @@ export { OrderState, } from './types'; -export { BlockParamLiteral, BlockParam, ContractEventArg, LogWithDecodedArgs, TransactionReceiptWithDecodedLogs } from '@0xproject/types'; +export { + BlockParamLiteral, + BlockParam, + ContractEventArg, + LogWithDecodedArgs, + TransactionReceiptWithDecodedLogs, +} from '@0xproject/types'; export { TransactionReceipt } from '@0xproject/types'; |