From a1c363a8af3cbfa2d843aaf7ddd05390db7b8f9b Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 21 Jun 2017 14:11:06 +0200 Subject: Fall back to import x = require() syntax --- src/contract_wrappers/exchange_wrapper.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/contract_wrappers/exchange_wrapper.ts') 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'; -- cgit v1.2.3