Cleanup tsc errors

This commit is contained in:
HenryNguyen5 2018-02-02 17:36:06 -05:00
parent f999272769
commit 44244e907a
3 changed files with 0 additions and 5 deletions

View File

@ -1,5 +1,3 @@
import { AppState } from 'reducers';
export * from './meta';
export * from './networks';
export * from './nodes';

View File

@ -5,8 +5,6 @@ import { SHAPESHIFT_TOKEN_WHITELIST } from 'api/shapeshift';
import { getStaticNetworkConfig } from 'selectors/config';
import { Token } from 'types/network';
const getConfig = (state: AppState) => state.config;
export function getNetworkTokens(state: AppState): Token[] {
const network = getStaticNetworkConfig(state);
return network ? network.tokens : [];

View File

@ -5,7 +5,6 @@ import difference from 'lodash/difference';
import { StaticNetworkConfig, DPathFormats } from 'types/network';
import { AppState } from 'reducers';
import { getStaticNetworkConfigs, getStaticNetworkConfig } from 'selectors/config';
const getConfig = (state: AppState) => state.config;
type PathType = keyof DPathFormats;