diff options
Diffstat (limited to 'src/contract_wrappers/exchange_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 4f9d03539..6d42dc110 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -1,8 +1,8 @@ -import map from 'lodash/map'; -import isEmpty from 'lodash/isEmpty'; -import find from 'lodash/find'; -import isUndefined from 'lodash/isUndefined'; -import unzip from 'lodash/unzip'; +import map = require('lodash/map'); +import isEmpty = require('lodash/isEmpty'); +import find = require('lodash/find'); +import isUndefined = require('lodash/isUndefined'); +import unzip = require('lodash/unzip'); import * as BigNumber from 'bignumber.js'; import promisify = require('es6-promisify'); import {Web3Wrapper} from '../web3_wrapper'; |