Fall back to import x = require() syntax

This commit is contained in:
Leonid Logvinov
2017-06-21 14:11:06 +02:00
parent 40a7be0690
commit a1c363a8af
16 changed files with 32 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
import find from 'lodash/find';
import filter from 'lodash/filter';
import isUndefined from 'lodash/isUndefined';
import find = require('lodash/find');
import filter = require('lodash/filter');
import isUndefined = require('lodash/isUndefined');
import {Token, ZeroExError} from '../../src';
const PROTOCOL_TOKEN_SYMBOL = 'ZRX';