Remove unused imports

This commit is contained in:
Jacob Evans
2019-03-22 16:26:43 +01:00
parent 0bf46bfcb5
commit 6b5ef10467
3 changed files with 0 additions and 7 deletions

View File

@@ -75,5 +75,4 @@ export {
FindOrdersThatCoverMakerAssetFillAmountOpts,
FeeOrdersAndRemainingFeeAmount,
OrdersAndRemainingFillAmount,
BalanceAndAllowance,
} from './types';

View File

@@ -2,7 +2,6 @@ import { Order } from '@0x/types';
import { BigNumber } from '@0x/utils';
import { constants } from './constants';
import { BalanceAndAllowance } from './types';
export const orderCalculationUtils = {
/**

View File

@@ -64,8 +64,3 @@ export interface OrdersAndRemainingFillAmount<T> {
ordersRemainingFillableMakerAssetAmounts: BigNumber[];
remainingFillAmount: BigNumber;
}
export interface BalanceAndAllowance {
balance: BigNumber;
allowance: BigNumber;
}